/* ===================================================================
   Pretty Vicious — vintage gig-poster styling
   Palette: cream paper / crimson ink / near-black ink / brass
=================================================================== */

:root {
  --cream: #f1e8da;
  --cream-dim: #e7dac5;
  --crimson: #c81e2c;
  --crimson-dark: #96141f;
  --ink: #1b1712;
  --ink-soft: rgba(27, 23, 18, 0.68);
  --ink-faint: rgba(27, 23, 18, 0.4);
  --brass: #b8863c;
  --brass-light: #d9b26a;
  --cream-on-ink: rgba(241, 232, 218, 0.88);
  --cream-on-ink-dim: rgba(241, 232, 218, 0.6);

  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Fraunces", serif;

  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

ol, ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
}

.paper-grain {
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* ===================== NAV ===================== */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(241, 232, 218, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 134, 60, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nw-pretty { color: var(--crimson); }
.nw-vicious { color: var(--ink); margin-left: 4px; }

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--brass);
  transition: right 0.25s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-socials {
  display: flex;
  gap: 12px;
}
.icon-link {
  color: var(--ink-soft);
  transition: color 0.2s ease, transform 0.2s ease;
}
.icon-link:hover {
  color: var(--crimson);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

/* ===================== BUTTONS ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px) rotate(-0.5deg); }

.btn-crimson {
  background: var(--crimson);
  color: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-crimson:hover { box-shadow: 5px 5px 0 var(--ink); }

.btn-brass {
  background: var(--brass);
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.btn-brass:hover { box-shadow: 5px 5px 0 var(--ink); background: var(--brass-light); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-outline-brass {
  background: transparent;
  color: var(--brass-light);
  border-color: var(--brass);
}
.btn-outline-brass:hover { background: var(--brass); color: var(--ink); }

.btn-small { padding: 9px 18px; font-size: 12px; }
.btn-full { width: 100%; padding: 15px; font-size: 15px; }
.btn-disabled { opacity: 0.45; pointer-events: none; }

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
  background: var(--cream);
}

.hero-splatter {
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0.08;
  animation: splatter-burst 1s cubic-bezier(0.2, 1.4, 0.4, 1) 0.9s forwards;
}
@keyframes splatter-burst {
  to { transform: translateX(-50%) scale(1); opacity: 0.08; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
}

.hero-logo {
  width: min(360px, 70vw);
  opacity: 0;
  transform: scale(0.9) rotate(-2deg);
  animation: logo-in 0.9s cubic-bezier(0.2, 0.9, 0.3, 1) 0.15s forwards;
  filter: drop-shadow(0 12px 24px rgba(27, 23, 18, 0.15));
}
@keyframes logo-in {
  to { opacity: 1; transform: scale(1) rotate(0deg); }
}

.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 4vw, 30px);
  margin: 28px 0 8px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise-in 0.7s ease 0.55s forwards;
}

.hero-sub {
  color: var(--ink-soft);
  font-size: 15px;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
  opacity: 0;
  transform: translateY(16px);
  animation: rise-in 0.7s ease 0.72s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  animation: rise-in 0.7s ease 0.88s forwards;
}

@keyframes rise-in {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-soft);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===================== SECTIONS ===================== */

.section { position: relative; }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 28px;
}

.section-light { background: var(--cream); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--cream-on-ink); }

.torn-edge {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 34px;
  clip-path: polygon(
    0% 100%, 4% 25%, 8% 100%, 12% 35%, 16% 100%, 20% 20%, 24% 100%,
    28% 30%, 32% 100%, 36% 15%, 40% 100%, 44% 40%, 48% 100%, 52% 22%,
    56% 100%, 60% 32%, 64% 100%, 68% 18%, 72% 100%, 76% 38%, 80% 100%,
    84% 24%, 88% 100%, 92% 30%, 96% 100%, 100% 20%, 100% 0%, 0% 0%
  );
}
.torn-to-dark { background: var(--ink); }
.torn-to-light { background: var(--cream); }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-title {
  font-size: clamp(30px, 5vw, 46px);
  margin: 10px 0 12px;
}
.section-dark .section-title { color: var(--cream); }
.section-lede {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 17px;
  opacity: 0.8;
  margin: 0;
}

.stamp-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 16px;
  border: 1.5px solid var(--brass);
  border-radius: 999px;
  color: var(--brass-light);
}
.stamp-badge-crimson {
  border-color: var(--crimson);
  color: var(--crimson);
}

/* scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== MUSIC & VIDEO ===================== */

.music-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.video-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(241, 232, 218, 0.06);
  border: 1px solid rgba(241, 232, 218, 0.16);
  border-radius: 6px;
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--cream-on-ink);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.video-card:hover {
  border-color: var(--brass);
  background: rgba(241, 232, 218, 0.1);
  transform: translateX(4px);
}

.video-thumb {
  width: 90px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 4px;
  background:
    repeating-linear-gradient(135deg, rgba(200,30,44,0.35) 0 8px, rgba(184,134,60,0.3) 8px 16px);
}

.play-btn {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-label {
  font-size: 15px;
  font-weight: 500;
}

.setlist-card {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: 3px;
  padding: 30px 28px;
  transform: rotate(1.5deg);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.setlist-tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 90px;
  height: 26px;
  background: rgba(217, 178, 106, 0.55);
  border: 1px solid rgba(184, 134, 60, 0.4);
}

.setlist-title {
  font-size: 18px;
  margin-bottom: 18px;
  text-align: center;
  color: var(--crimson);
}

.setlist {
  columns: 2;
  column-gap: 28px;
}
.setlist li {
  display: flex;
  flex-direction: column;
  break-inside: avoid;
  gap: 1px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--ink-faint);
  font-size: 13.5px;
}
.setlist .song { font-weight: 600; }
.setlist .artist { color: var(--ink-soft); font-style: italic; font-size: 12px; }

.stream-links {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  margin-top: 12px;
  flex-wrap: wrap;
}
.stream-btn {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 11px 24px;
  border: 1.5px solid rgba(241, 232, 218, 0.3);
  border-radius: 999px;
  color: var(--cream-on-ink);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.stream-btn:hover { border-color: var(--brass); color: var(--brass-light); }

/* ===================== TESTIMONIALS ===================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(27, 23, 18, 0.08);
  padding: 34px 26px 26px;
  margin: 0;
  transform: rotate(var(--rot));
  box-shadow: 0 10px 24px rgba(27, 23, 18, 0.1);
  font-size: 15px;
}
.testimonial-card:hover { transform: rotate(0deg) translateY(-4px); }
.testimonial-card p { margin: 0 0 14px; }
.testimonial-card cite {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.ink-stamp {
  position: absolute;
  top: -16px;
  right: 18px;
  transform: rotate(6deg);
  border: 2px solid var(--crimson);
  color: var(--crimson);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.85;
}
.ink-stamp-brass { border-color: var(--brass); color: var(--brass); }

/* ===================== SHOWS / TICKETS ===================== */

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ticket-stub {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 24px;
  background: rgba(241, 232, 218, 0.05);
  border: 1px solid rgba(241, 232, 218, 0.15);
  border-radius: 6px;
  padding: 20px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.ticket-stub:hover { transform: translateX(6px); border-color: var(--brass); }

.ticket-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  min-width: 60px;
}
.ticket-date .tm {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--brass-light);
}
.ticket-date .td {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--cream);
}

.ticket-perf {
  width: 0;
  height: 44px;
  border-left: 2px dashed rgba(241, 232, 218, 0.25);
}

.ticket-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--cream);
}
.ticket-info p {
  margin: 0;
  font-size: 13.5px;
  color: var(--cream-on-ink-dim);
}

.shows-note {
  text-align: center;
  margin: 40px 0 0;
  color: var(--cream-on-ink-dim);
  font-style: italic;
}
.shows-note a { color: var(--brass-light); font-style: normal; font-weight: 600; }

/* ===================== ABOUT / BAND ===================== */

.band-photo {
  position: relative;
  margin: 0 auto 56px;
  max-width: 900px;
  transform: rotate(-1deg);
}
.band-photo img {
  display: block;
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 18px 36px rgba(27, 23, 18, 0.28);
}
.band-photo-caption {
  margin: 14px 0 0;
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
}
.band-photo-tape {
  position: absolute;
  top: -14px;
  width: 90px;
  height: 26px;
  background: rgba(217, 178, 106, 0.55);
  border: 1px solid rgba(184, 134, 60, 0.4);
  z-index: 2;
}
.band-photo-tape-l { left: 6%; transform: rotate(-4deg); }
.band-photo-tape-r { right: 6%; transform: rotate(3deg); }

.band-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.band-card {
  text-align: center;
  transform: rotate(var(--rot));
  transition: transform 0.2s ease;
}
.band-card:hover { transform: rotate(0deg) translateY(-6px); }

.polaroid {
  background: #fff;
  padding: 12px 12px 20px;
  box-shadow: 0 10px 22px rgba(27, 23, 18, 0.14);
  margin-bottom: 14px;
}
.polaroid span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--cream);
  background: var(--ink);
}
.polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 2px;
}
.band-card:nth-child(1) .polaroid span { background: var(--crimson); }
.band-card:nth-child(2) .polaroid span { background: var(--ink); }
.band-card:nth-child(3) .polaroid span { background: var(--brass); color: var(--ink); }
.band-card:nth-child(4) .polaroid span { background: var(--crimson-dark); }
.band-card:nth-child(5) .polaroid span { background: var(--ink); }

.band-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}
.band-card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ===================== CONTACT ===================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-copy { position: relative; }
.contact-copy .section-title { text-align: left; }
.contact-copy .section-lede { text-align: left; margin: 14px 0 28px; }

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.02em;
}
.contact-direct a { color: var(--brass-light); }
.contact-direct a:hover { color: var(--cream); }

.contact-socials { margin-bottom: 8px; }
.contact-socials .icon-link { color: var(--cream-on-ink-dim); }
.contact-socials .icon-link:hover { color: var(--brass-light); }

.wax-seal {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 2px solid var(--brass);
  color: var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
  opacity: 0.7;
}

.contact-form {
  background: rgba(241, 232, 218, 0.04);
  border: 1px solid rgba(241, 232, 218, 0.15);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-on-ink-dim);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(241, 232, 218, 0.06);
  border: 1px solid rgba(241, 232, 218, 0.22);
  border-radius: 4px;
  padding: 11px 12px;
  color: var(--cream);
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brass);
}

.form-success {
  display: none;
  text-align: center;
  color: var(--brass-light);
  font-style: italic;
  margin: 0;
}
.contact-form.submitted .form-success { display: block; }
.contact-form.submitted .btn-full { display: none; }

/* ===================== FOOTER ===================== */

.site-footer {
  background: var(--ink);
  color: var(--cream-on-ink-dim);
  padding: 40px 28px 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-wordmark { font-size: 18px; }
.footer-wordmark .nw-vicious { color: var(--cream-on-ink); }
.footer-copy { font-size: 12.5px; margin: 0; }
.site-footer .icon-link { color: var(--cream-on-ink-dim); }
.site-footer .icon-link:hover { color: var(--brass-light); }

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .music-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-right .nav-socials, .nav-right .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(184, 134, 60, 0.4);
  }
  .band-grid { grid-template-columns: repeat(2, 1fr); }
  .ticket-stub {
    grid-template-columns: auto 1fr;
    row-gap: 12px;
  }
  .ticket-perf { display: none; }
  .ticket-stub .btn { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .band-grid { grid-template-columns: repeat(2, 1fr); }
  .section-inner { padding: 72px 20px; }
  .setlist { columns: 1; }
}
