/* ============================================================
   PIZZA SESH — Direction A "The Architect"
   Brutalist-clinical grid. Warm palette, colour rationed to
   structural bands. Anton display / Archivo body / JetBrains
   Mono utility.
   ============================================================ */

:root {
  --ink:    #0a0a0a;
  --black:  #16130f;
  --orange: #ff5800;
  --red:    #e5402a;
  --cream:  #f6eedd;
  --paper:  #ffffff;
  --lime:   #c6f432;
  --line:   1.5px solid var(--ink);

  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Archivo', system-ui, -apple-system, sans-serif;
  --display: 'Anton', var(--sans);

  /* horizontal page padding, fluid */
  --pad: clamp(16px, 4vw, 28px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* keep the artboard feel: a max-width canvas centred on a stone field */
  max-width: 1180px;
  margin-inline: auto;
  box-shadow: 0 1px 3px rgba(0,0,0,.18);
  overflow-x: hidden;
}

@media (min-width: 1260px) {
  html { background: #cbc9c2; }
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.display { font-family: var(--display); font-weight: 400; }
.o { color: var(--orange); }
.lime { color: var(--lime); }

/* ============================ UTILITY BAR ============================ */
.util {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-bottom: var(--line);
  padding: 9px var(--pad);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.util__mid { color: var(--orange); font-weight: 700; text-align: center; }

@media (max-width: 720px) {
  .util__mid { display: none; }
}

/* ============================ NAV ============================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad);
  border-bottom: var(--line);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 50;
}
.nav__logo {
  font-family: var(--display);
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  /* outline wordmark — same treatment as the footer, ink stroke for the
     white nav bar instead of the footer's white stroke */
  color: transparent;
  -webkit-text-stroke: 1.1px var(--ink);
  text-stroke: 1.1px var(--ink);
  /* crop the caps top & bottom: oversize the type, centre it, then clip the
     band shorter than the cap height so the letterforms bleed off both edges */
  display: flex;
  align-items: center;
  font-size: clamp(30px, 3.4vw, 38px);
  line-height: 1;
  height: clamp(23px, 2.6vw, 28px);
  overflow: hidden;
  transition: color .15s, -webkit-text-stroke-color .15s;
}
.nav__logo:hover {
  color: var(--orange);
  -webkit-text-stroke-color: var(--orange);
}
.nav__links {
  display: flex;
  gap: clamp(16px, 2.4vw, 30px);
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav__links a { text-decoration: none; transition: color .15s; }
.nav__links a:not(.nav__cta):hover { color: var(--orange); }
.nav__cta {
  border: var(--line);
  padding: 5px 12px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  transition: background .15s, color .15s;
}
.nav__cta:hover { background: var(--ink); color: var(--orange); }

.nav__toggle {
  display: none;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    color: #fff;
    border-bottom: var(--line);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .18s ease;
  }
  .nav__links a { padding: 16px var(--pad); border-top: 1px solid rgba(255,255,255,.16); }
  .nav__cta { background: var(--orange); color: var(--ink); border: 0; }
  .nav[data-open="true"] .nav__links { transform: scaleY(1); }
  .nav__toggle { display: block; }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  background: var(--cream);
  padding: clamp(32px, 5vw, 54px) var(--pad) clamp(32px, 4.5vw, 46px);
  overflow: hidden;
}
.hero__note {
  position: absolute;
  top: clamp(28px, 4vw, 46px);
  right: var(--pad);
  text-align: right;
  max-width: 230px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.7;
  z-index: 2;
}
.hero__note-num { color: var(--orange); font-weight: 700; }
.hero__note-body { opacity: 0.7; }

.hero__title {
  margin: 0 0 0 -0.012em;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.01em;
}
.hero__line {
  display: block;
  font-size: clamp(86px, 25vw, 300px);
  white-space: nowrap;
}
.hero__line--dark { color: var(--black); }
.hero__line--orange { color: var(--orange); }
.hero__line .dot { color: var(--red); }

.hero__lede {
  font-weight: 800;
  font-stretch: 112%;
  font-size: clamp(19px, 2.6vw, 27px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--black);
  max-width: 780px;
  margin: clamp(18px, 2.4vw, 26px) 0 0;
}
.hero__title, .hero__lede, .hero__chips { position: relative; z-index: 2; }
.hero__box {
  position: absolute;
  right: clamp(-16px, 1vw, 24px);
  bottom: clamp(8px, 2.5vw, 32px);
  width: clamp(300px, 38vw, 540px);
  z-index: 1;
  pointer-events: none;
}
.hero__box img { display: block; width: 100%; height: auto; }

.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  background: var(--black);
  color: var(--cream);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
}

@media (max-width: 860px) {
  .hero__box { display: none; }
}
@media (max-width: 720px) {
  .hero__note { position: static; max-width: none; text-align: left; margin-bottom: 18px; }
}

/* ============================ TICKER ============================ */
.ticker {
  border-top: var(--line);
  border-bottom: var(--line);
  overflow: hidden;
  background: var(--ink);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ps-marq 22s linear infinite;
  font-family: var(--display);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 7px 0;
}
.ticker__set { display: flex; }
.ticker__set > span { padding: 0 22px; white-space: nowrap; }

@keyframes ps-marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ============================ PHOTO SLOTS ============================ */
.slot {
  margin: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  background:
    repeating-linear-gradient(45deg, rgba(10,10,10,.045) 0 14px, transparent 14px 28px),
    var(--cream);
}
.slot::before {
  content: "[ PHOTO ]";
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--orange);
  font-weight: 700;
}
.slot::after {
  content: attr(data-label);
  padding: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}
/* real image fills the slot; hide the placeholder hatch + labels */
.slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slot:has(img) { background: none; }
.slot:has(img)::before,
.slot:has(img)::after { content: none; }

.slot--bordered { border-right: var(--line); }
.slot--full { min-height: 420px; border-top: var(--line); }
.slot--bordered-y { min-height: 360px; border-top: var(--line); border-bottom: var(--line); }

.photoband--two {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  border-bottom: var(--line);
}
.photoband--two .slot { min-height: 380px; }

@media (max-width: 640px) {
  .photoband--two { grid-template-columns: 1fr; }
  .photoband--two .slot--bordered { border-right: 0; border-bottom: var(--line); }
  .slot { min-height: 260px; }
  .slot--full { min-height: 280px; }
}

/* ============================ MENU ============================ */
.menu { padding: clamp(36px, 5vw, 54px) var(--pad) 10px; }
.menu__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
}
.menu__title { font-size: clamp(40px, 6vw, 64px); line-height: 0.9; font-stretch: 125%; margin: 0; }
.menu__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  opacity: 0.65;
  flex: none;
}

.menu__grid {
  border-top: var(--line);
  border-left: var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.item {
  border-right: var(--line);
  border-bottom: var(--line);
  padding: 24px;
}
.item__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.item__name {
  font-family: var(--display);
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.05;
}
.swatch {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 11px;
  vertical-align: middle;
}
.swatch--red { background: var(--red); }
.swatch--orange { background: var(--orange); }
.swatch--ink { background: var(--black); }
.tag-v { font-family: var(--mono); font-size: 11px; color: var(--orange); }
.item__price { font-family: var(--display); font-size: 22px; color: var(--orange); flex: none; }
.item__desc {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 9px 0 0;
  padding-left: 22px;
}

.bsides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: var(--line);
  border-right: var(--line);
  border-bottom: var(--line);
}
.bsides__col { padding: 22px 24px; }
.bsides__col:first-child { border-right: var(--line); }
.bsides__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.bsides__title { font-size: 24px; }
.bsides__price {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  text-align: right;
}
.bsides__list { font-family: var(--display); font-size: 20px; line-height: 1.5; letter-spacing: 0.01em; margin: 0; }
.menu__legal {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 14px 0 0;
}

@media (max-width: 640px) {
  /* Stack the header so the meta text wraps instead of forcing width past the viewport */
  .menu__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .menu__meta { text-align: left; flex: initial; }
  .menu__grid { grid-template-columns: 1fr; }
  .bsides { grid-template-columns: 1fr; }
  .bsides__col:first-child { border-right: 0; border-bottom: var(--line); }
}

/* ============================ ABOUT ============================ */
.about {
  background: var(--red);
  color: var(--cream);
  padding: clamp(40px, 6vw, 64px) var(--pad);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.about__head {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}
.about__body {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.95;
  letter-spacing: 0.03em;
  opacity: 0.9;
  margin: 0;
}
@media (max-width: 720px) { .about { grid-template-columns: 1fr; } }

/* ============================ STORY ============================ */
.story {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(40px, 6vw, 64px) var(--pad);
}
.story--has-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.story__text { display: flex; flex-direction: column; gap: clamp(14px, 2.4vw, 26px); }
.story__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}
.story__head {
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}
.story__body {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.95;
  letter-spacing: 0.03em;
  opacity: 0.9;
  margin: 0;
  max-width: 60ch;
}
.story__media { margin: 0; }
.story__media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1.5px solid rgba(246, 238, 221, 0.18);
}
@media (max-width: 720px) {
  .story--has-media { grid-template-columns: 1fr; }
}

/* ============================ EVENTS ============================ */
.events { padding: 0 var(--pad) clamp(36px, 5vw, 56px); }
.events__head {
  border-top: var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-top: 22px;
  margin-bottom: 8px;
}
.events__title { font-size: clamp(40px, 6vw, 64px); line-height: 0.9; font-stretch: 125%; margin: 0; }
.events__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  text-align: right;
  flex: none;
}
.events__list { font-family: var(--mono); font-size: 13px; }
.gig {
  display: grid;
  grid-template-columns: 130px 1fr 160px 110px;
  gap: 16px;
  padding: 16px 0;
  border-bottom: var(--line);
  align-items: center;
}
.gig__date { font-weight: 700; }
.gig__loc { opacity: 0.6; }
.gig__time { text-align: right; color: var(--orange); font-weight: 700; }
.gig--sold { opacity: 0.45; }
.gig--sold .gig__loc { opacity: 0.8; }
.gig--sold .gig__time { color: inherit; }

.events__live {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0 0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
}
.events__live .o { color: var(--orange); }

.events__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  border-top: var(--line);
  margin-top: 18px;
  padding-top: 16px;
}
.ecard__k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 6px;
}
.ecard__v { font-family: var(--mono); font-size: 12px; line-height: 1.55; }

@media (max-width: 720px) {
  .gig { grid-template-columns: 96px 1fr auto; }
  .gig__loc { display: none; }
  .events__cards { grid-template-columns: 1fr; gap: 16px; }
  .events__live { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ============================ REELS ============================ */
.reels { background: var(--cream); padding: clamp(32px, 4.5vw, 48px) var(--pad) clamp(40px, 5.5vw, 60px); }
.reels__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.reels__brand { display: flex; align-items: center; gap: 16px; }
.reels__handle { font-size: clamp(24px, 3.4vw, 32px); }
.reels__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  text-align: right;
}
.social { display: flex; gap: 8px; }
.social__btn {
  width: 34px;
  height: 34px;
  background: var(--orange);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .15s;
}
.social__btn:hover { transform: translateY(-2px); }
.social--outline .social__btn { background: transparent; border: var(--line); border-color: var(--orange); color: var(--orange); }

.reels__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.reel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: var(--line);
}
.reel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.reel--ink { background: var(--black); }
.reel--orange { background: var(--orange); }
.reel--red { background: var(--red); }

@media (max-width: 900px) {
  .reels__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .reels__grid { grid-template-columns: 1fr 1fr; }
  .reels__head { flex-direction: column; align-items: flex-start; }
}

/* ============================ BOOKING ============================ */
.book {
  background: var(--orange);
  color: var(--ink);
  padding: clamp(40px, 6vw, 64px) var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.book__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.book__title { font-size: clamp(48px, 8vw, 80px); line-height: 0.86; margin: 0; }
.slot--book {
  min-height: 300px;
  border: var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(10,10,10,.06) 0 14px, transparent 14px 28px),
    rgba(255,255,255,.18);
}
.slot--book::after { color: var(--ink); opacity: 0.6; }
.book__copy { font-family: var(--mono); font-size: 12px; line-height: 1.8; margin: 0 0 18px; }
.book__specs { margin-bottom: 22px; }
.spec {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: var(--line);
  padding: 8px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.spec--last { border-bottom: var(--line); }
.spec__k { opacity: 0.65; }
.spec__v { font-weight: 700; text-align: right; }
.book__btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-size: 22px;
  padding: 14px 26px;
  text-decoration: none;
  transition: transform .15s;
}
.book__btn:hover { transform: translateY(-2px); }

@media (max-width: 860px) {
  .book { grid-template-columns: 1fr 1fr; }
  .book__head { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .book { grid-template-columns: 1fr; }
}

/* ============================ FOOTER ============================ */
.foot { background: var(--ink); color: #fff; padding: clamp(32px, 4.5vw, 48px) var(--pad) 36px; }
.foot__grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.foot__mark { width: 74px; color: var(--orange); }
.foot__mark svg { width: 74px; height: 74px; display: block; }
.foot__col {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot__k { color: var(--orange); }
.foot__col .social { margin: 8px 0 10px; }

.foot__wordmark {
  font-family: var(--display);
  font-size: clamp(64px, 13vw, 150px);
  line-height: 0.8;
  letter-spacing: -0.01em;
  margin-top: 30px;
  -webkit-text-stroke: 1.5px #fff;
  color: transparent;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__mark { grid-column: 1 / -1; }
}
@media (max-width: 460px) {
  .foot__grid { grid-template-columns: 1fr; }
}
