/* ============================================================
   Practically Strangers — site styles
   Poster palette · slab + condensed type
   ============================================================ */

:root {
  --cream:  #f2ece1;
  --cream2: #e6e0d5;
  --ink:    #2e2620;
  --maroon: #7c1620;
  --red:    #c1291a;
  --orange: #db6a18;
  --gold:   #e8a11c;
  --muted:  #6a5f54;
  --line:   rgba(46, 38, 32, .22);

  --slab:  "Bevan", Georgia, serif;
  --cond:  "Barlow Condensed", system-ui, sans-serif;
  --body:  "Barlow", system-ui, sans-serif;
  --fancy: "Rye", Georgia, serif;
  --black: "Archivo Black", system-ui, sans-serif;

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--maroon); }

h1, h2, h3 { margin: 0; font-family: var(--slab); font-weight: 400; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* --- utility bits --- */
.eyebrow {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
}

.stripes {
  height: 34px;
  background: linear-gradient(to bottom,
    var(--gold) 0 6px, var(--cream) 6px 9px,
    var(--orange) 9px 15px, var(--cream) 15px 18px,
    var(--red) 18px 24px, var(--cream) 24px 27px,
    var(--maroon) 27px 34px);
}
.stripes.flip {
  background: linear-gradient(to bottom,
    var(--maroon) 0 7px, var(--cream) 7px 10px,
    var(--red) 10px 16px, var(--cream) 16px 19px,
    var(--orange) 19px 25px, var(--cream) 25px 28px,
    var(--gold) 28px 34px);
}
/* thin stripe that aligns with the page gutter */
.stripes-inset { height: 14px; margin: 0 32px; }

.btn {
  display: inline-block;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold  { background: var(--gold); color: var(--ink); }
.btn-gold:hover  { background: #f2b23a; color: var(--ink); }
.btn-ink   { background: var(--ink); color: var(--cream); }
.btn-ink:hover   { background: #453a30; color: var(--cream); }
.btn-red   { background: var(--red); color: var(--cream); }
.btn-red:hover   { background: #d63925; color: var(--cream); }
.btn-outline { border: 2px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  border-bottom: 3px solid var(--gold);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 16px 32px;
}
.brand {
  font-family: var(--slab);
  font-size: 20px; letter-spacing: .01em;
  color: var(--gold);
}
.brand:hover { color: #f2b23a; }
.nav-links {
  display: flex; gap: 26px; align-items: center;
  font-family: var(--cond);
  font-weight: 600; font-size: 15px; letter-spacing: .2em;
  text-transform: uppercase;
}
.nav-links a { color: var(--cream); }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.book { color: var(--ink); background: var(--gold); padding: 6px 14px; }
.nav-links a.book:hover { background: #f2b23a; color: var(--ink); }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; margin: 5px 0;
  background: var(--cream); transition: .2s;
}

/* ============================================================
   Hero (home)
   ============================================================ */
.hero {
  position: relative; min-height: 82vh;
  display: flex; flex-direction: column;
  overflow: hidden; background: var(--ink);
}
.hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 46% 42%;
  filter: saturate(.82) contrast(1.04);
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(28,22,18,.86) 0%, rgba(28,22,18,.34) 34%,
    rgba(28,22,18,.30) 58%, rgba(124,22,32,.82) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 54px 32px 0; text-align: center;
}
.wordmark {
  font-family: var(--slab);
  font-size: clamp(34px, 9vw, 96px);
  line-height: .92; letter-spacing: .01em;
  color: var(--gold);
  text-shadow: 0 3px 0 rgba(124,22,32,.55);
}
.hero-foot {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; padding: 0 32px 30px;
}
.hero-loc {
  font-family: var(--cond); font-size: 15px; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(242,236,225,.85);
}
.social { display: flex; flex-wrap: wrap; gap: 10px; }
.social a {
  font-family: var(--cond); font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 7px 13px;
}
.social a:hover { background: #f2b23a; }

/* ============================================================
   Generic sections
   ============================================================ */
.section { padding: 64px 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 26px;
}
.section-title { font-size: clamp(38px, 6vw, 64px); line-height: .95; }

.grid-2 {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px;
}

/* --- shows list --- */
.shows-list { display: flex; flex-direction: column; }
.show-row {
  display: grid; grid-template-columns: 82px 1fr auto;
  gap: 20px; align-items: center;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.show-row:first-child { border-top: 2px solid var(--ink); }
.show-date {
  font-family: var(--slab); font-size: 15px; line-height: 1.15; color: var(--red);
}
.show-date .day { font-size: 26px; color: var(--ink); }
.show-name { font-family: var(--slab); font-size: 20px; letter-spacing: .01em; }
.show-meta { font-size: 14px; color: var(--muted); letter-spacing: .03em; }

/* --- booking teaser (home) --- */
.book-teaser {
  background: var(--maroon); color: var(--cream);
  padding: 40px 36px; position: relative; overflow: hidden;
}
.rings { position: absolute; border-radius: 50%; }
.rings.a { right: -90px; top: -90px; width: 280px; height: 280px; border: 14px solid var(--red);    opacity: .55; }
.rings.b { right: -60px; top: -60px; width: 220px; height: 220px; border: 14px solid var(--orange); opacity: .55; }
.rings.c { right: -30px; top: -30px; width: 160px; height: 160px; border: 14px solid var(--gold);   opacity: .55; }
.book-teaser > * { position: relative; }
.book-teaser h2 { font-size: 34px; line-height: 1.08; margin: 6px 0 16px; }

/* --- who we are band --- */
.band-band {
  background: var(--ink); color: var(--cream);
}
.band-band .grid-2 { align-items: center; }
.band-band h2 { font-size: clamp(30px, 5vw, 38px); line-height: 1.1; margin-bottom: 20px; }
.lineup-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
  margin-top: 30px; font-size: 15px; color: rgba(242,236,225,.92);
}
.lineup-grid .role {
  font-family: var(--cond); letter-spacing: .14em; color: var(--gold);
  text-transform: uppercase; font-size: 13px;
}
.band-photo { position: relative; height: 420px; overflow: hidden; }
.band-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.band-photo .tint {
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(232,161,28,.1), rgba(124,22,32,.16));
}

/* --- listen & watch --- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard .thumb {
  aspect-ratio: 16/10; overflow: hidden; border: 1px solid rgba(46,38,32,.18);
  background: var(--ink);
}
.vcard .thumb img { width: 100%; height: 100%; object-fit: cover; }
.vcard h3 { font-size: 17px; margin-top: 12px; }
.vcard .meta { font-size: 14px; color: var(--muted); }
.stream-tile {
  aspect-ratio: 16/10; background: var(--maroon);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  text-align: center;
}
.stream-tile .lbl { font-family: var(--cond); font-size: 13px; letter-spacing: .24em; color: var(--gold); text-transform: uppercase; }
.stream-tile .big { font-family: var(--slab); font-size: 22px; color: var(--cream); line-height: 1.15; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--cream); padding: 44px 0 52px;
}
.footer-inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand { font-family: var(--slab); font-size: 30px; line-height: 1; }
.footer-sub { font-family: var(--cond); font-size: 14px; letter-spacing: .18em; color: var(--muted); margin-top: 10px; text-transform: uppercase; }
.footer-social {
  display: flex; gap: 22px;
  font-family: var(--cond); font-size: 14px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
}
.footer-social a { color: var(--ink); }
.footer-social a:hover { color: var(--red); }

/* ============================================================
   Sub-page headers
   ============================================================ */
.page-hero {
  position: relative; height: 320px; overflow: hidden; background: var(--ink);
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; object-position: 44% 38%; }
.page-hero .veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,38,32,.15), rgba(46,38,32,.72)); }
.page-hero > .wrap { position: absolute; left: 0; right: 0; bottom: 30px; }
.page-hero .title {
  font-family: var(--slab); font-size: clamp(40px, 7vw, 60px); line-height: .95; color: var(--cream);
}
.page-hero .title span { color: var(--gold); }

.page-title-row {
  padding: 52px 0 20px; display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.page-title-row h1 { font-size: clamp(44px, 8vw, 64px); line-height: .95; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; font-family: var(--cond); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.filters span { padding: 8px 16px; border: 1px solid rgba(46,38,32,.3); color: var(--muted); }
.filters span.on { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* --- shows full table --- */
.shows-full .row {
  display: grid; grid-template-columns: 120px 1fr 200px 150px; gap: 24px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.shows-full .row.past { opacity: .6; }
.shows-full .bigdate { font-family: var(--slab); font-size: 34px; line-height: 1; color: var(--red); }
.shows-full .bigdate .mo { font-size: 16px; color: var(--ink); }
.shows-full .ev-name { font-family: var(--slab); font-size: 24px; }
.shows-full .ev-sub, .shows-full .ev-loc { font-size: 15px; color: var(--muted); }
.shows-full .cell-btn {
  font-family: var(--cond); font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 11px 0; text-align: center;
}
.cta-strip {
  margin-top: 40px; background: var(--maroon); color: var(--cream);
  padding: 30px 34px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
.cta-strip h2 { font-size: 26px; line-height: 1.15; }

/* --- about --- */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; padding: 52px 0; }
.lead { font-family: var(--slab); font-size: 26px; line-height: 1.3; margin-bottom: 18px; }
.about-grid p { color: #4c4239; line-height: 1.7; margin: 0 0 16px; }
.stats { display: flex; gap: 34px; margin-top: 34px; padding-top: 26px; border-top: 2px solid var(--ink); flex-wrap: wrap; }
.stat .num { font-family: var(--slab); font-size: 32px; color: var(--red); }
.stat .cap { font-family: var(--cond); font-size: 13px; letter-spacing: .18em; color: var(--muted); text-transform: uppercase; }
.lineup-list { display: flex; flex-direction: column; }
.lineup-row {
  display: flex; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line);
}
.lineup-row:last-child { border-bottom: 1px solid var(--line); }
.avatar {
  width: 52px; height: 52px; flex: none; overflow: hidden;
  background: repeating-linear-gradient(135deg, #e3ddd1 0 6px, #ebe5da 6px 12px);
  border: 1px solid rgba(46,38,32,.18);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

/* member portrait grid */
.members-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.member { margin: 0; }
.member-photo {
  aspect-ratio: 1/1; overflow: hidden; border: 1px solid rgba(46,38,32,.15);
  background: repeating-linear-gradient(135deg, #e3ddd1 0 8px, #ebe5da 8px 16px);
  position: relative;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member-photo.ph::after {
  content: "photo"; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font: 11px ui-monospace, Menlo, monospace; color: #8a7f73;
}
.member figcaption { margin-top: 10px; }
.member .nm { font-family: var(--slab); font-size: 17px; }
.member .rl { font-family: var(--cond); font-size: 12px; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }

.lineup-row .nm { font-family: var(--slab); font-size: 19px; }
.lineup-row .rl { font-family: var(--cond); font-size: 14px; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; }

/* --- music --- */
.music-page { background: var(--ink); color: var(--cream); }
.music-page .eyebrow { color: var(--gold); }
.music-page h1 { font-size: clamp(40px, 7vw, 56px); line-height: .95; margin-bottom: 10px; }
.music-page .intro { font-size: 16px; color: rgba(242,236,225,.72); max-width: 46ch; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.video-feature { grid-column: span 2; aspect-ratio: 21/9; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.video-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 44% 42%; filter: brightness(.6); }
.play {
  position: relative; z-index: 1; width: 74px; height: 74px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.play::after { content: ""; width: 0; height: 0; border-left: 22px solid var(--ink); border-top: 14px solid transparent; border-bottom: 14px solid transparent; margin-left: 6px; }
.video-cell { aspect-ratio: 16/9; overflow: hidden; }
.video-cell img { width: 100%; height: 100%; object-fit: cover; }
.stream-strip {
  margin-top: 38px; background: var(--maroon); padding: 26px 30px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.stream-strip h2 { font-size: 24px; line-height: 1.2; margin-top: 6px; }

/* --- photos --- */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 12px; }
.photo-grid .cell { overflow: hidden; }
.photo-grid .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.photo-grid .cell:hover img { transform: scale(1.05); }
.photo-grid .big { grid-column: span 2; grid-row: span 2; }
.photo-grid .fill { background: var(--red); }

/* --- auto gallery (masonry) --- */
.gallery { column-count: 3; column-gap: 12px; }
.gallery img {
  width: 100%; display: block; margin: 0 0 12px; break-inside: avoid;
  border: 1px solid rgba(46,38,32,.12); cursor: zoom-in;
  transition: filter .2s ease, transform .2s ease;
}
.gallery img:hover { filter: brightness(1.04); transform: translateY(-2px); }

/* --- lightbox --- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  background: rgba(20,16,13,.92); padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 88vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox-close {
  position: absolute; top: 16px; right: 22px; background: none; border: 0;
  color: var(--cream); font-size: 42px; line-height: 1; cursor: pointer;
}
.lightbox-close:hover { color: var(--gold); }

/* --- booking --- */
.booking-page { background: var(--maroon); color: var(--cream); position: relative; overflow: hidden; }
.booking-page .rings-bl { position: absolute; border-radius: 50%; }
.booking-page .rings-bl.a { left: -120px; bottom: -120px; width: 340px; height: 340px; border: 16px solid var(--red);    opacity: .45; }
.booking-page .rings-bl.b { left: -80px;  bottom: -80px;  width: 260px; height: 260px; border: 16px solid var(--orange); opacity: .45; }
.booking-page .rings-bl.c { left: -40px;  bottom: -40px;  width: 180px; height: 180px; border: 16px solid var(--gold);   opacity: .45; }
.booking-grid { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; padding: 52px 0; }
.booking-grid h1 { font-size: clamp(40px, 7vw, 52px); line-height: 1; }
.booking-info p { font-size: 16px; line-height: 1.65; color: rgba(242,236,225,.85); margin: 14px 0 0; max-width: 34ch; }
.contact-list { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.contact-list .k { font-family: var(--cond); letter-spacing: .18em; color: var(--gold); text-transform: uppercase; }
.booking-form { background: var(--cream); color: var(--ink); padding: 28px; }
.field { margin-bottom: 16px; }
.field label {
  display: block; font-family: var(--cond); font-size: 13px; font-weight: 700;
  letter-spacing: .18em; color: var(--muted); text-transform: uppercase; margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--body); font-size: 16px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 2px solid var(--ink);
  padding: 6px 0; outline: none;
}
.field textarea { border: 2px solid var(--ink); padding: 10px; min-height: 90px; resize: vertical; }
.field select { border: 2px solid var(--ink); padding: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin: 0 0 14px; }

/* --- merch --- */
.merch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product .pic { aspect-ratio: 4/5; overflow: hidden; background: #fff; border: 1px solid rgba(46,38,32,.15); }
.product .pic img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.product .placeholder {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(135deg, #e3ddd1 0 8px, #ebe5da 8px 16px);
  display: flex; align-items: center; justify-content: center;
  font: 12px ui-monospace, Menlo, monospace; color: #8a7f73;
}
.product h3 { font-size: 17px; margin-top: 10px; }
.product .price { font-size: 14px; color: var(--muted); }
.merch-note {
  margin-top: 30px; padding: 20px 24px; border: 2px solid var(--ink);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--ink); padding: 8px 32px 20px;
    border-bottom: 3px solid var(--gold);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; width: 100%; }
  .nav-links a.book { padding: 10px 14px; margin-top: 8px; }
  .nav-toggle { display: block; }

  .grid-2, .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards-3, .merch-grid { grid-template-columns: 1fr 1fr; }
  .members-grid { grid-template-columns: repeat(3, 1fr); }
  .shows-full .row { grid-template-columns: 84px 1fr; grid-auto-rows: auto; }
  .shows-full .ev-loc { grid-column: 2; }
  .shows-full .cell-btn { grid-column: 2; justify-self: start; padding: 10px 22px; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery { column-count: 2; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .brand { font-size: 15px; letter-spacing: 0; }
  .hero { min-height: 78vh; }
  .hero-inner { padding: 40px 20px 0; }
  .hero-foot { padding: 0 20px 24px; gap: 14px; }
  .stripes-inset { margin: 0 20px; }
  .section { padding: 44px 0; }
  .cards-3, .merch-grid, .video-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .video-feature { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .stats { gap: 22px; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .show-row { grid-template-columns: 64px 1fr; }
  .show-row .btn, .show-row .show-cta { grid-column: 2; justify-self: start; margin-top: 4px; }
}
