/* ============================================================
   GERONIMO RECORDS — style.css
   geronimorecords.net
   ============================================================ */

/* ── RESET & ROOT ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --black:      #050505;
  --off-black:  #0d0d0d;
  --dark:       #151515;
  --card:       #1f1f1f;
  --border:     rgba(255,255,255,0.14);
  --white:      #f7f7f4;
  --cream:      #e8e8e2;
  --gold:       #ed1c24;
  --gold-light: #ff4f5a;
  --red:        #ff313d;
  --muted:      rgba(247,247,244,0.64);

  /* Typography */
  --font-display:   'Times New Roman MT', 'Times New Roman', Times, serif;
  --font-body:      'Times New Roman MT', 'Times New Roman', Times, serif;
  --font-editorial: 'Times New Roman MT', 'Times New Roman', Times, serif;

  /* Spacing */
  --section-pad: 120px 60px;
  --section-pad-mobile: 80px 24px;
}

html { scroll-behavior: smooth; }

body {
  position: relative;
  isolation: isolate;
  background: #000;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.home-page section {
  border-bottom: 2px solid var(--gold);
}

body.events-page .page-hero,
body.events-page section {
  border-bottom: 2px solid var(--gold);
}

body.archive-page .page-hero,
body.archive-page section,
body.merch-page .page-hero,
body.merch-page section,
body.collective-page .page-hero,
body.collective-page section,
body.contact-page .page-hero,
body.contact-page section {
  border-bottom: 2px solid var(--gold);
}

body > * {
  position: relative;
  z-index: 1;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; }

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.66) 58%, transparent 100%);
  border-bottom: 1px solid rgba(237,28,36,0.55);
  backdrop-filter: blur(4px);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(0,0,0,0.97);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow-y: auto;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--white); }

.nav-mobile a.nav-mobile-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border: 1px solid var(--gold) !important;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-mobile a.nav-mobile-cta:hover {
  background: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
  color: var(--white) !important;
}

/* ── SECTION BASICS ─────────────────────────────────────────── */
section { padding: var(--section-pad); }

.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--white);
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--white);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245,245,240,0.25);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--white); transform: translateY(-1px); }

/* ── MARQUEE ────────────────────────────────────────────────── */
.marquee-wrap {
  height: 20px;
  background: #ed1c24;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
}

.hero-grid {
  display: none;
}

.hero-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.hero-title span {
  display: block;
}

.hero-title .hero-title-accent {
  display: inline;
  color: var(--gold);
}

.hero-title .outline {
  -webkit-text-stroke: 1px rgba(247,247,244,0.32);
  color: transparent;
}

.hero-sub {
  font-family: var(--font-editorial);
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
  margin-top: 20px;
  max-width: 400px;
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: block;
  width: 96px;
  height: 2px;
  background: var(--gold);
  z-index: 1;
}

.hero-scroll::before {
  content: none;
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  padding: 160px 60px 80px;
  background: var(--off-black);
  border-bottom: 1px solid var(--border);
}

.page-hero .section-label { margin-bottom: 12px; }

/* ── EVENT ROWS ─────────────────────────────────────────────── */
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

.event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  background: var(--off-black);
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
}

.event-row:hover { background: var(--card); }

.event-card {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 42px;
  align-items: stretch;
  padding: 36px;
  min-height: 480px;
  background: var(--off-black);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s;
}

.event-card:hover { background: var(--card); }

.event-poster {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1545 / 2000;
  background: var(--black);
  border: 1px solid rgba(237,28,36,0.28);
  overflow: hidden;
}

.event-poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.event-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  min-width: 0;
}

.event-card .event-num {
  font-size: 52px;
  color: rgba(245,245,240,0.14);
}

.event-card .event-title-text {
  font-size: clamp(44px, 7vw, 96px);
  max-width: 780px;
}

.event-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-card-details span:not(:last-child)::after {
  content: "/";
  margin-left: 18px;
  color: rgba(247,247,244,0.28);
}

.event-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: rgba(245,245,240,0.1);
  line-height: 1;
}

.event-title-text {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.event-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.event-date {
  font-family: var(--font-editorial);
  font-size: 20px;
  font-style: italic;
  color: var(--muted);
  text-align: right;
  min-width: 140px;
}

.event-ticket {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font-body);
}

.event-ticket:hover { background: var(--gold); color: var(--black); }

.event-featured { border-left: 3px solid var(--gold); }

/* ── ARCHIVE GRID ───────────────────────────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.archive-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
}

.archive-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.archive-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.archive-card:hover .archive-card-bg { transform: scale(1.05); }

/* Fallback gradient fills (swap out when real photos are added) */
.bg-1 { background: linear-gradient(135deg, #ed1c24 0%, #5a070b 42%, #090909 100%); }
.bg-2 { background: linear-gradient(135deg, #050505 0%, #272727 55%, #f7f7f4 100%); }
.bg-3 { background: linear-gradient(135deg, #050505 0%, #202020 45%, #ed1c24 100%); }
.bg-4 { background: linear-gradient(135deg, #f7f7f4 0%, #bcbcb5 35%, #171717 100%); }
.bg-5 { background: linear-gradient(135deg, #050505 0%, #ed1c24 50%, #ff6b74 100%); }
.bg-6 { background: linear-gradient(135deg, #050505 0%, #1f1f1f 52%, #f7f7f4 100%); }

.archive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.18) 58%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.archive-always {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
}

.archive-event-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.archive-event-date {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.archive-large {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 400px;
}

#archive .archive-grid {
  grid-template-columns: repeat(4, 1fr);
}

#archive .archive-grid .archive-large {
  grid-column: span 1;
  min-height: 0;
  aspect-ratio: 3 / 4;
}

/* ── MERCH GRID ─────────────────────────────────────────────── */
.merch-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.merch-card {
  background: var(--card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.merch-card:hover { transform: translateY(-4px); }

.merch-img {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.merch-img-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch-img-bg img {
  object-fit: cover;
}

.merch-label-large {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 70px);
  letter-spacing: 0.05em;
  opacity: 0.08;
  color: var(--white);
  text-align: center;
}

.merch-info {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.merch-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.merch-price {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.merch-sold-out {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── COLLECTIVE ─────────────────────────────────────────────── */
.collective-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 280px);
  color: rgba(237,28,36,0.09);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.collective-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.collective-text p {
  font-family: var(--font-editorial);
  font-size: 20px;
  line-height: 1.8;
  color: rgba(247,247,244,0.76);
  margin-bottom: 20px;
}

.collective-text p:first-child {
  font-size: 24px;
  color: var(--cream);
}

.collective-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.person-card {
  background: var(--card);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.person-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.3s;
}

.person-card:hover::before { height: 100%; }

.person-name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.person-role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── CONTACT / FORM ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}

.form-group select { background-color: #111; }
.form-group select option { background: #111; color: var(--white); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { resize: none; height: 120px; line-height: 1.6; }

.form-success {
  display: none;
  padding: 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.contact-info { display: flex; flex-direction: column; gap: 40px; }

.contact-block-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}

.contact-block p {
  font-family: var(--font-editorial);
  font-size: 17px;
  color: rgba(245,245,240,0.7);
  line-height: 1.7;
}

.contact-block a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s;
}

.contact-block a:hover { border-color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: all 0.2s;
}

.social-link:hover { border-color: var(--gold); color: var(--gold); }

.social-link svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.gallery-grid {
  columns: 3;
  column-gap: 4px;
  margin-top: 40px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 4px;
  overflow: hidden;
  background: var(--card);
  cursor: pointer;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--tall  { aspect-ratio: 2/3; }
.gallery-item:not(.gallery-item--tall) { aspect-ratio: 4/3; }

/* Placeholder state — remove once real photos are added */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: rgba(237,28,36,0.26);
  border: 1px dashed rgba(237,28,36,0.18);
}

/* ── SHOPIFY BUY BUTTON WRAPPER ─────────────────────────────── */
.shopify-embed-wrapper {
  width: 100%;
  min-height: 200px;
  display: grid;
  gap: 16px;
  margin-top: 32px;
  /* Shopify Buy Button injects its iframe here */
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
}

.footer-logo span { color: var(--gold); }

.footer-copy {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

/* ── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-pad: var(--section-pad-mobile); }

  nav { padding: 0 24px; }
  .nav-logo { font-size: 16px; letter-spacing: 0.12em; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile {
    justify-content: flex-start;
    gap: 24px;
    padding: 52px 24px 40px;
  }
  .nav-mobile a {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1;
  }

  .hero { min-height: 580px; padding: 0 24px 60px; }
  .hero-title { font-size: clamp(56px, 18vw, 86px); }
  .hero-actions { flex-wrap: wrap; gap: 12px; }
  .btn-primary, .btn-ghost { padding: 13px 20px; max-width: 100%; }
  .hero-scroll { display: none; }

  .page-hero { padding: 130px 24px 60px; }
  .section-title { font-size: clamp(38px, 13vw, 64px); overflow-wrap: anywhere; }

  .events-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .event-card {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    padding: 20px 16px 24px;
  }
  .event-poster { max-width: none; }
  .event-card-info { gap: 18px; }
  .event-card .event-num { display: block; font-size: 34px; }
  .event-card .event-title-text { font-size: clamp(38px, 13vw, 58px); }
  .event-card-details { display: grid; gap: 8px; }
  .event-card-details span:not(:last-child)::after { content: ""; margin-left: 0; }
  .event-row { grid-template-columns: 1fr auto; gap: 16px; padding: 20px 16px; }
  .event-num, .event-date { display: none; }

  .archive-grid { grid-template-columns: 1fr 1fr; }
  #archive .archive-grid { grid-template-columns: 1fr 1fr; }
  .archive-large { grid-column: span 1; min-height: 240px; }
  .archive-always { left: 14px; right: 14px; bottom: 14px; }
  .archive-event-name { font-size: clamp(15px, 4.8vw, 20px); overflow-wrap: anywhere; }
  .archive-event-date { font-size: 9px; letter-spacing: 0.12em; }

  .merch-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .merch-name { font-size: 16px; overflow-wrap: anywhere; }

  .collective-grid { grid-template-columns: 1fr; gap: 40px; }
  .collective-people { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .gallery-grid { columns: 2; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* events.html detail layout */
  #short-film-festival > div { grid-template-columns: 1fr !important; gap: 40px !important; }

  footer { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-links { justify-content: center; }
}
