/* ============================================
   DUKE OF OWLS — retro rock poster stylesheet
   ============================================ */

:root {
  --paper: #f1ece1;
  --paper-deep: #ded7c6;
  --ink: #17110c;
  --orange: #93250f;
  --orange-bright: #a83415;
  --mustard: #b3a67f;
  --olive: #1d1712;
  --brown: #3a2417;
  --cream: #faf7ef;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- paper grain overlay (fine) --- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .8;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}

/* --- stains & blotches overlay (coarse, dirty paper) --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='700'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='3' seed='7' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.29 0 0 0 0 0.18 0 0 0 0 0.11 0 0 0 0.5 -0.22'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23b)'/%3E%3C/svg%3E");
}

/* --- ink splatters --- */
.hero, .ctaband, .pagehero {
  background-blend-mode: normal;
}
.splat {
  position: absolute;
  pointer-events: none;
  opacity: .14;
  z-index: 0;
}

h1, h2, h3 { font-family: "Permanent Marker", cursive; font-weight: 400; }

a { color: var(--orange); }

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

/* ============ marquee strip ============ */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 3px solid var(--orange);
  font-family: "Staatliches", "Arial Narrow", sans-serif;
  font-size: 1.05rem;
  letter-spacing: .18em;
  padding: .45em 0;
  user-select: none;
}
.marquee__inner { display: inline-block; animation: marquee 28s linear infinite; }
.marquee__inner span { padding: 0 .6em; }
.marquee__inner .star { color: var(--mustard); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ nav ============ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  padding: 1rem 5vw;
  border-bottom: 3px double var(--ink);
  background: var(--paper);
  position: relative;
  z-index: 5;
}
.nav__logo {
  font-family: "Permanent Marker", cursive;
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav__logo img { width: 46px; height: auto; }
.nav__links { display: flex; gap: .4rem; flex-wrap: wrap; }
.nav__links a {
  font-family: "Staatliches", "Arial Narrow", sans-serif;
  font-size: 1.15rem;
  letter-spacing: .14em;
  text-decoration: none;
  color: var(--ink);
  padding: .3em .9em;
  border: 2px solid transparent;
  border-radius: 999px;
  transition: all .15s ease;
}
.nav__links a:hover { border-color: var(--ink); background: var(--mustard); transform: rotate(-2deg); }
.nav__links a.active { background: var(--ink); color: var(--paper); }

/* ============ hero ============ */
.hero {
  position: relative;
  text-align: center;
  padding: 3.5rem 5vw 4.5rem;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  background:
    radial-gradient(circle at 50% 118%, rgba(241,236,225,0) 0%, rgba(241,236,225,0) 34%, rgba(241,236,225,.94) 62%, var(--paper) 78%),
    repeating-conic-gradient(from 0deg at 50% 118%, var(--paper-deep) 0deg 6deg, var(--paper) 6deg 12deg);
}
.hero__logo {
  width: min(88vw, 560px);
  margin: .5rem auto 0;
  display: block;
  position: relative;
  z-index: 1;
  transform: rotate(-1.6deg);
  filter: drop-shadow(3px 4px 0 rgba(23,17,12,.14));
}
.hero__arch { width: min(92vw, 760px); margin: 0 auto; display: block; }
.hero__photo {
  width: min(72vw, 340px);
  margin: -0.6rem auto 0;
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: .8rem;
  box-shadow: 7px 7px 0 rgba(33,23,16,.85);
  transform: rotate(-2.2deg);
  position: relative;
  z-index: 1;
}
.hero__photo img {
  width: 100%;
  display: block;
  filter: contrast(1.05);
}
.hero__photo::before, .hero__photo::after {
  content: "";
  position: absolute;
  width: 86px;
  height: 26px;
  background: rgba(223,160,50,.5);
  border-left: 2px dashed rgba(33,23,16,.25);
  border-right: 2px dashed rgba(33,23,16,.25);
  box-shadow: 0 1px 2px rgba(33,23,16,.25);
  z-index: 2;
}
.hero__photo::before { top: -13px; left: -26px; transform: rotate(-38deg); }
.hero__photo::after { top: -13px; right: -26px; transform: rotate(38deg); }
.hero__tag {
  font-family: "Staatliches", "Arial Narrow", sans-serif;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  letter-spacing: .28em;
  margin-top: 1.6rem;
  text-transform: uppercase;
}
.hero__tag em { font-style: normal; color: var(--orange); }
.hero__sub { max-width: 46ch; margin: .8rem auto 0; font-size: .98rem; }
.hero__cta { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* buttons — hand-inked wobble borders */
.btn {
  font-family: "Staatliches", "Arial Narrow", sans-serif;
  font-size: 1.2rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: var(--mustard);
  border: 3px solid var(--ink);
  border-radius: 255px 25px 225px 25px / 25px 225px 25px 255px;
  padding: .55em 1.6em;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  display: inline-block;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-2px,-2px) rotate(-1.5deg); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.btn--orange { background: var(--orange); color: var(--cream); }
.btn--ghost { background: transparent; }

/* ============ sections ============ */
.section { padding: 4.5rem 5vw; max-width: 1080px; margin: 0 auto; }
.section--full { max-width: none; }

.section-title { text-align: center; margin-bottom: 2.6rem; position: relative; }
.section-title h2 {
  display: inline-block;
  font-size: clamp(2rem, 5.5vw, 3.1rem);
  color: var(--ink);
  position: relative;
  padding: 0 .4em;
  transform: rotate(-1.2deg);
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .12em;
  height: .32em;
  background: var(--mustard);
  z-index: -1;
  transform: rotate(1.2deg);
}
.section-title .kicker {
  display: block;
  font-family: "Staatliches", "Arial Narrow", sans-serif;
  letter-spacing: .35em;
  font-size: .95rem;
  color: var(--orange);
  margin-bottom: .3rem;
  text-transform: uppercase;
}

/* ============ record player ============ */
.deck {
  background: var(--olive);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 8px 8px 0 rgba(33,23,16,.9);
  color: var(--cream);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.2rem;
  padding: 2.2rem;
  align-items: center;
}
.deck__platter { position: relative; width: 300px; height: 300px; margin: 0 auto; }
.vinyl {
  width: 100%; height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 29%, rgba(250,243,227,.06) 30% 30.6%, transparent 31% 37%, rgba(250,243,227,.06) 37.5% 38%, transparent 38.5% 45%, rgba(250,243,227,.06) 45.5% 46%, transparent 46.5% 56%, rgba(250,243,227,.07) 56.5% 57%, transparent 57.5% 66%, rgba(250,243,227,.07) 66.5% 67%, transparent 67.5% 78%, rgba(250,243,227,.08) 78.5% 79%, transparent 79.5% 100%),
    radial-gradient(circle, #17110c 0 100%);
  border: 3px solid var(--ink);
  box-shadow: 0 0 0 4px rgba(23,17,12,.35), inset 0 0 30px rgba(0,0,0,.7);
  animation: spin 1.8s linear infinite;
  animation-play-state: paused;
}
.deck.playing .vinyl { animation-play-state: running; }
.vinyl__label {
  position: absolute;
  top: 50%; left: 50%;
  width: 42%; height: 42%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: var(--mustard);
  border: 2px solid var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink);
  padding: 8%;
  pointer-events: none;
}
.vinyl__label .side { font-family: "Staatliches", sans-serif; letter-spacing: .2em; font-size: .68rem; }
.vinyl__label .name { font-family: "Permanent Marker", cursive; font-size: .95rem; line-height: 1.15; }
.vinyl__label::after {
  content: "";
  width: 10px; height: 10px;
  background: var(--olive);
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
@keyframes spin { to { rotate: 360deg; } }

.deck__panel h3 { font-size: 1.5rem; color: var(--mustard); margin-bottom: .2rem; }
.deck__panel .deck__hint { font-size: .85rem; opacity: .8; margin-bottom: 1.2rem; }

.track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: rgba(250,243,227,.07);
  color: var(--cream);
  border: 2px solid rgba(250,243,227,.35);
  border-radius: 155px 12px 145px 12px / 12px 145px 12px 155px;
  padding: .8rem 1rem;
  margin-bottom: .8rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  transition: all .15s ease;
}
.track:hover { border-color: var(--mustard); background: rgba(223,160,50,.15); }
.track.current { border-color: var(--mustard); background: rgba(223,160,50,.22); }
.track__side {
  font-family: "Staatliches", sans-serif;
  letter-spacing: .12em;
  background: var(--mustard);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: .1em .5em;
  font-size: .85rem;
  flex-shrink: 0;
}
.track__name { font-family: "Permanent Marker", cursive; font-size: 1.05rem; flex-grow: 1; }
.track__time { font-size: .85rem; opacity: .75; }

.deck__controls { display: flex; align-items: center; gap: 1rem; margin-top: 1.4rem; }
.playbtn {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--orange);
  color: var(--cream);
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .12s ease;
}
.playbtn:hover { transform: scale(1.06) rotate(-3deg); }
.deck__seekwrap { flex-grow: 1; }
.deck__times { display: flex; justify-content: space-between; font-size: .8rem; opacity: .85; margin-top: .25rem; }
input.seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(250,243,227,.25);
  border: 2px solid var(--ink);
  outline: none;
  cursor: pointer;
}
input.seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mustard);
  border: 3px solid var(--ink);
}
input.seek::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--mustard);
  border: 3px solid var(--ink);
}

/* ============ about ============ */
.about { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.5rem; align-items: center; }
.about__text p { margin-bottom: 1rem; }
.about__text .bigquote {
  font-family: "Permanent Marker", cursive;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--orange);
  margin: 1.4rem 0;
  transform: rotate(-1deg);
}
.polaroid {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: .9rem .9rem 2.8rem;
  box-shadow: 6px 6px 0 rgba(33,23,16,.85);
  transform: rotate(2.5deg);
  position: relative;
}
/* strip of aged tape on every polaroid */
.polaroid::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 92px;
  height: 26px;
  background: rgba(223,160,50,.45);
  border-left: 2px dashed rgba(33,23,16,.25);
  border-right: 2px dashed rgba(33,23,16,.25);
  transform: translateX(-50%) rotate(-4deg);
  box-shadow: 0 1px 2px rgba(33,23,16,.2);
  z-index: 2;
}
.polaroid.tilt-left { transform: rotate(-2.5deg); }
.polaroid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: sepia(.25) contrast(1.05); }
.polaroid figcaption {
  position: absolute; bottom: .6rem; left: 0; right: 0;
  text-align: center;
  font-size: .85rem;
}
.lineup { margin-top: 1.5rem; }
.lineup li {
  list-style: none;
  font-family: "Staatliches", "Arial Narrow", sans-serif;
  font-size: 1.12rem;
  letter-spacing: .1em;
  padding: .18em 0;
  border-bottom: 1px dashed rgba(33,23,16,.4);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.lineup li span:last-child { color: var(--orange); }

/* ============ gallery ============ */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.8rem; }
.gallery .polaroid { margin: 0; }
.gallery .polaroid:nth-child(2n) { transform: rotate(-2deg); }
.gallery .polaroid:nth-child(3n) { transform: rotate(1.4deg); }
.gallery .polaroid:hover { transform: rotate(0) scale(1.03); transition: transform .2s ease; z-index: 2; }

/* ============ mailing list CTA band ============ */
.ctaband {
  background: var(--orange);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 3.5rem 5vw;
  position: relative;
  overflow: hidden;
}
.ctaband::before {
  content: "★ ★ ★";
  position: absolute;
  font-size: 8rem;
  opacity: .12;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  letter-spacing: 1em;
  pointer-events: none;
}
.ctaband h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); margin-bottom: .4rem; }
.ctaband p { max-width: 52ch; margin: 0 auto 1.6rem; }
.ctaband .btn { background: var(--mustard); }

/* ============ socials / footer ============ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 5vw 2.2rem;
  text-align: center;
}
.footer__owl { width: 84px; margin: 0 auto 1rem; opacity: .95; display: block; filter: invert(.92) sepia(.12); }
.socials { display: flex; gap: 1.1rem; justify-content: center; margin: 1.2rem 0 1.6rem; flex-wrap: wrap; }
.socials a {
  width: 52px; height: 52px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  transition: all .15s ease;
}
.socials a:hover { background: var(--mustard); color: var(--ink); border-color: var(--mustard); transform: rotate(-8deg) scale(1.08); }
.socials svg { width: 24px; height: 24px; fill: currentColor; }
.footer__contact { font-size: .95rem; }
.footer__contact a { color: var(--mustard); }
.footer__fine { margin-top: 1.6rem; font-size: .78rem; opacity: .6; letter-spacing: .08em; }

/* ============ page hero (tour/merch) ============ */
.pagehero {
  text-align: center;
  padding: 3.5rem 5vw 2.5rem;
  border-bottom: 3px solid var(--ink);
  background:
    radial-gradient(circle at 50% 130%, rgba(242,231,208,0) 0%, rgba(242,231,208,.95) 60%, var(--paper) 75%),
    repeating-conic-gradient(from 0deg at 50% 130%, var(--paper-deep) 0deg 6deg, var(--paper) 6deg 12deg);
}
.pagehero h1 { font-size: clamp(2.4rem, 7vw, 4rem); transform: rotate(-1.2deg); }
.pagehero h1 span { color: var(--orange); }
.pagehero p { max-width: 50ch; margin: .8rem auto 0; }

/* ============ tour ============ */
.ticket {
  background: var(--cream);
  border: 3px dashed var(--ink);
  border-radius: 14px;
  padding: 2.6rem 2rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 34px; height: 34px;
  background: var(--paper);
  border: 3px dashed var(--ink);
  border-radius: 50%;
  top: 50%;
}
.ticket::before { left: -20px; transform: translateY(-50%); clip-path: inset(0 0 0 50%); border-left: none; }
.ticket::after { right: -20px; transform: translateY(-50%); clip-path: inset(0 50% 0 0); border-right: none; }
.ticket h3 { font-size: 1.7rem; color: var(--orange); margin-bottom: .6rem; }
.ticket p { margin-bottom: 1.4rem; }
.pastshows { margin-top: 3.5rem; text-align: center; }
.pastshows h3 { font-family: "Staatliches", sans-serif; letter-spacing: .3em; font-size: 1.05rem; color: var(--brown); margin-bottom: 1.2rem; text-transform: uppercase; }
.pastshows ul { list-style: none; }
.pastshows li { padding: .3em 0; font-size: .95rem; }
.pastshows li strong { font-family: "Staatliches", sans-serif; letter-spacing: .1em; font-weight: 400; font-size: 1.05rem; }

/* ============ video embed ============ */
.videowrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border: 3px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--mustard), 8px 8px 0 3px var(--ink);
  background: var(--ink);
}
.videowrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============ merch ============ */
.merchsoon { text-align: center; max-width: 660px; margin: 0 auto; }
.merchbox {
  background: var(--cream);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--mustard), 8px 8px 0 3px var(--ink);
  padding: 3rem 2rem;
  transform: rotate(-.8deg);
}
.merchbox .stamp {
  display: inline-block;
  font-family: "Staatliches", sans-serif;
  font-size: 1.4rem;
  letter-spacing: .25em;
  color: var(--orange);
  border: 3px solid var(--orange);
  border-radius: 8px;
  padding: .2em .8em;
  transform: rotate(-6deg);
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}
.merchbox h3 { font-size: 1.9rem; margin-bottom: .8rem; }
.merchbox p { margin-bottom: 1.6rem; }
.tee { width: 150px; margin: 0 auto 1.5rem; }

/* ============ reveal animation ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============ responsive ============ */
@media (max-width: 820px) {
  .deck { grid-template-columns: 1fr; padding: 1.6rem; }
  .deck__platter { width: 240px; height: 240px; }
  .about { grid-template-columns: 1fr; }
  .section { padding: 3.2rem 6vw; }
}
@media (max-width: 480px) {
  .nav { justify-content: center; }
  .deck__platter { width: 200px; height: 200px; }
  .hero__cta .btn { width: 100%; text-align: center; }
}
