:root {
  --ink: #180202;         /* Primary text (almost black) */
  --cream: #fff9ed;       /* Light backgrounds */
  --darkcream: #a66b2f;   /* Warm accent, not for body text */
  --peach: #ffb185;
  --rose: #ff5b7d;
  --red: #b01b1b;         /* Buttons / badges */
  --wine: #5a0909;        /* Dark backgrounds */
  --gold: #ffd34d;        /* Highlights */
  --amber: #c97a16;
  --shadow: rgba(24, 2, 2, 0.45);
}

/* :root {
  --ink: #2a0505;
  --cream: #fff8e6;
  --darkcream: #4d120a;
  --peach: #ffb185;
  --rose: #ff5f82;
  --red: #8f1111;
  --wine: #4b0909;
  --gold: #ffd36b;
  --amber: #c9851d;
  --shadow: rgba(42, 5, 5, 0.42);
} */

html {
  overflow-x: hidden;
  background-color: #ffd3b8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #ffd3b8;
  background-image:
    radial-gradient(circle at 10% 6%, rgba(255, 138, 168, 0.6), transparent 42%),
    radial-gradient(circle at 92% 96%, rgba(255, 138, 168, 0.55), transparent 46%),
    linear-gradient(135deg, #ffd8c0 0%, #ffd0bd 46%, #ffdcaa 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.2), transparent 26rem);
  mix-blend-mode: soft-light;
}

main {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  min-height: auto;
  padding: 24px 0 42px;
}

.hero-copy,
.intro,
.events,
.contact {
  border: 4px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 248, 230, 0.94);
  box-shadow: 12px 12px 0 var(--shadow);
}

.contact a {
  display: block;
  margin: 8px 0;
}

.hero-copy {
  order: 1;
  z-index: 2;
  position: relative;
  justify-self: center;
  width: min(100%, 560px);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  padding: 8px clamp(10px, 4vw, 22px) 0;
  text-align: center;
}

.pill,
.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 0 16px;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--red);
  color: #fff;
  box-shadow: 4px 4px 0 var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: none;
  color: var(--darkcream);
  font-size: clamp(2.9rem, 12vw, 9.2rem);
  line-height: 0.78;
  margin-bottom: 10px;
  overflow-wrap: normal;
  text-shadow:
    3px 3px 0 var(--red),
    -2px -2px 0 var(--red),
    6px 8px 0 rgba(58, 8, 8, 0.3);
  letter-spacing: -0.08em;
}

h2 {
  color: var(--darkcream);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.9;
  margin-bottom: 18px;
  text-shadow:
    2px 2px 0 var(--red),
    -1px -1px 0 var(--red),
    5px 5px 0 rgba(58, 8, 8, 0.24);
}

h3 {
  color: var(--darkcream);
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 0.92;
  margin-bottom: 8px;
  text-shadow:
    2px 2px 0 var(--red),
    -1px -1px 0 var(--red),
    5px 5px 0 rgba(58, 8, 8, 0.22);
}

p {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
}

.subtitle {
  color: white;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  font-weight: 950;
  line-height: 0.95;
  margin-bottom: 26px;
  text-shadow:
    3px 3px 0 var(--ink),
    0 0 18px rgba(255, 255, 255, 0.45);
  overflow-wrap: normal;
}

.tagline {
  color: var(--darkcream);
  font-family: "Cooper Black", Georgia, serif;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1;
  margin-bottom: 20px;
  text-shadow:
    2px 2px 0 var(--red),
    -1px -1px 0 var(--red);
}

.schedule {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  color: var(--wine);
  font-family: "Cooper Black", Georgia, serif;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  margin-bottom: 20px;
}

.schedule span {
  display: inline-flex;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--darkcream);
  box-shadow: 3px 3px 0 var(--red);
  padding: 4px 16px;
}

.signup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--wine);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.signup a {
  font-family: "Cooper Black", Georgia, serif;
  font-size: clamp(1.8rem, 4.2vw, 2.8rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--darkcream);
  text-shadow:
    2px 2px 0 var(--red),
    -1px -1px 0 var(--red);
  overflow-wrap: anywhere;
}

.venue {
  font-weight: 900;
}

.hero-venue {
  color: var(--wine);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  padding-inline: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  margin-top: 16px;
  border: 4px solid var(--ink);
  border-radius: 4px;
  background: var(--darkcream);
  box-shadow: 6px 6px 0 var(--red);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  padding: 0 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.records {
  position: absolute;
  top: 34px;
  right: -28vw;
  z-index: 0;
  width: var(--vinyl-size);
  aspect-ratio: 1 / 1.3;
  transform: none;
}

.vinyl {
  position: absolute;
  border: 0;
  padding: 0;
  background: transparent;
}

.vinyl img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(12px 14px 14px rgba(58, 8, 8, 0.45));
}

.vinyl-back {
  top: 0;
  right: -12%;
  z-index: 1;
  width: 110%;
  filter: drop-shadow(10px 12px 12px rgba(58, 8, 8, 0.4)) brightness(0.9);
  transform: rotate(11deg);
}

.vinyl-back img {
  filter: drop-shadow(10px 12px 12px rgba(58, 8, 8, 0.4)) brightness(0.9);
}

.vinyl-front {
  top: 33%;
  left: -14%;
  z-index: 2;
  width: 116%;
  transform: rotate(-7deg);
}

.admin-shortcut {
  cursor: pointer;
  transition: transform 0.15s ease;
}

.admin-shortcut:hover {
  transform: rotate(-7deg) scale(1.04);
}

.admin-shortcut:focus-visible {
  outline: 4px solid var(--ink);
  outline-offset: 4px;
  transform: rotate(-7deg) scale(1.04);
}

.intro,
.events,
.contact {
  margin: 38px 0;
  padding: clamp(28px, 5vw, 48px);
}

.intro {
  background:
    linear-gradient(135deg, rgba(255, 249, 235, 0.97), rgba(255, 196, 156, 0.94)),
    repeating-linear-gradient(
      90deg,
      transparent 0 30px,
      rgba(143, 17, 17, 0.12) 30px 34px
    );
}

.intro p:not(.eyebrow),
.events p:not(.eyebrow),
.contact a {
  font-weight: 800;
}

.intro p:not(.eyebrow) {
  font-size: clamp(1.3rem, 1.2rem + 0.5vw, 1.6rem);
  line-height: 1.8;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: end;
  justify-content: space-between;
}

.event-list {
  display: grid;
  gap: 36px;
  margin-top: 32px;
}

.event-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  border: 5px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(255, 247, 225, 0.96), rgba(255, 177, 133, 0.9)),
    repeating-linear-gradient(0deg, rgba(168, 21, 21, 0.08) 0 4px, transparent 4px 16px);
  box-shadow: 10px 10px 0 var(--wine);
  padding: clamp(18px, 3vw, 30px);
}

.event-card::after {
  content: "";
  position: absolute;
  display: none;
  inset: 18px auto 18px -22px;
  width: 44px;
  background:
    repeating-linear-gradient(0deg, var(--ink) 0 20px, var(--darkcream) 20px 34px);
  opacity: 0.9;
}

.event-image {
  position: relative;
  z-index: 1;
  border: 5px solid var(--ink);
  background: var(--ink);
  box-shadow: 8px 8px 0 rgba(58, 8, 8, 0.28);
  padding: 12px;
}

.event-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  object-fit: cover;
  display: block;
  border: 3px solid var(--darkcream);
  background: var(--gold);
}

.event-content {
  position: relative;
  z-index: 1;
}

.where {
  color: var(--wine);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.empty {
  border: 4px dashed var(--ink);
  border-radius: 8px;
  background: rgba(255, 245, 215, 0.72);
  padding: 24px;
}

.contact {
  margin-bottom: 72px;
  background: linear-gradient(135deg, var(--wine), var(--red));
  color: var(--darkcream);
  text-align: center;
}

.contact a {
  color: white;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 900;
  text-decoration: none;
  text-shadow: 2px 2px 0 var(--ink);
  overflow-wrap: anywhere;
}

.film-strip {
  position: relative;
  z-index: 1;
  order: 3;
  justify-self: center;
  width: min(560px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(6px, 2.5vw, 12px);
  align-self: center;
  border-radius: 5px;
  background: #0b0b0b;
  box-shadow: 0 12px 0 rgba(58, 8, 8, 0.34);
  padding: clamp(12px, 4vw, 20px) clamp(16px, 5vw, 24px);
}

.film-strip::before,
.film-strip::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 9px;
  background:
    repeating-linear-gradient(0deg, transparent 0 7px, #e9e4d6 7px 19px, transparent 19px 26px);
  border-radius: 3px;
}

.film-strip::before {
  left: 7px;
}

.film-strip::after {
  right: 7px;
}

.film-strip span {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 2px solid #0b0b0b;
  background: linear-gradient(135deg, #cfcfcf, #8f8f8f);
}

.film-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 1120px) {
  main {
    width: min(1240px, calc(100% - 32px));
  }

  .hero {
    grid-template-columns: minmax(280px, 24%) minmax(460px, 1fr) minmax(320px, 34%);
    gap: clamp(20px, 3vw, 44px);
    min-height: 720px;
    padding: 44px 0 58px;
  }

  .hero-copy {
    order: initial;
    justify-self: start;
    width: min(100%, 720px);
    margin-left: clamp(10px, 2vw, 32px);
    padding: clamp(20px, 5vw, 48px) 0;
  }

  .hero-copy h1,
  .hero-copy p {
    overflow-wrap: normal;
  }

  .tagline,
  .schedule,
  .signup a {
    white-space: nowrap;
  }

  .records {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 1;
    width: min(var(--vinyl-size), 118%);
    margin: -16px 0 0 -42px;
    transform: none;
  }

  .film-strip {
    order: initial;
    width: auto;
    min-width: 280px;
    align-self: stretch;
    grid-template-columns: 1fr;
    box-shadow: 14px 14px 0 rgba(58, 8, 8, 0.4);
    padding: 20px 24px;
  }

  .event-card {
    grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  }

  .event-card::after {
    display: block;
  }

  .event-card img {
    min-height: 260px;
  }
}
