@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --black: #080808;
  --off-black: #111111;
  --card-bg: #161616;
  --red: #CC1111;
  --red-dark: #990d0d;
  --gold: #c8962a;
  --white: #f5f5f0;
  --grey: #888;
  --light-grey: #bbb;
  --border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0.0) 100%);
  backdrop-filter: blur(0px);
  transition: background 0.3s, backdrop-filter 0.3s;
}

nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .star { color: var(--red); }

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

.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-grey);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-links .btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  transition: background 0.2s;
}

.nav-links .btn-nav:hover { background: var(--red-dark); color: var(--white); }

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

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

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Hero background video. object-fit: cover makes it behave exactly like the
   background-image it replaced, so it fills the section at any aspect ratio
   and crops rather than letterboxes. The source is a 666x464 phone export —
   it gets scaled up a long way on desktop, which the dark overlay hides. */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
  pointer-events: none;
}

/* Reduced-motion visitors still get the video — it's the hero, not decoration.
   Only the slow zoom-out is dropped. */
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; transform: none; }
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.1) 0%,
    rgba(8,8,8,0.2) 40%,
    rgba(8,8,8,0.85) 80%,
    rgba(8,8,8,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  font-size: clamp(90px, 18vw, 220px);
  line-height: 0.85;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub {
  margin-top: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--light-grey);
  max-width: 420px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ── SECTIONS ── */
section { padding: 100px 60px; }

.section-header { margin-bottom: 60px; }

.section-header h2 {
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.9;
  color: var(--white);
}

/* ── TICKER ── */
.ticker {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-block;
  animation: ticker 22s linear infinite;
}

.ticker-inner span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  margin-right: 60px;
  color: var(--white);
}

.ticker-inner span.sep {
  color: rgba(255,255,255,0.4);
  margin-right: 60px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 72%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0; left: 0;
}

.about-img-accent {
  width: 52%;
  height: 55%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  bottom: 0; right: 0;
  border: 3px solid var(--black);
}

.about-text h2 {
  font-size: clamp(48px, 7vw, 88px);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--light-grey);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text .stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-item .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--red);
  line-height: 1;
}

.stat-item .lbl {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── SHOWS ── */
#shows { background: var(--off-black); }

.shows-list { display: flex; flex-direction: column; gap: 0; }

.show-item {
  display: grid;
  grid-template-columns: 140px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  position: relative;
}

.show-item::before {
  content: '';
  position: absolute;
  left: -60px; right: -60px;
  top: 0; bottom: 0;
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transition: opacity 0.2s;
}

.show-item:hover::before { opacity: 1; }

.show-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
}

.show-date .month {
  font-size: 13px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
}

.show-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
}

.show-info .venue {
  font-size: 12px;
  color: var(--grey);
  margin-top: 4px;
}

.show-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--gold);
}

.show-price.free { color: var(--grey); font-size: 16px; font-family: 'Space Mono', monospace; }

.show-tickets {
  text-align: right;
}

.no-shows {
  padding: 60px 0;
  text-align: center;
  color: var(--grey);
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* ── MUSIC / RELEASES ── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.release-card {
  background: var(--card-bg);
  overflow: hidden;
  transition: transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.release-card:hover { transform: translateY(-6px); }

.release-artwork {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.release-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-artwork .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204,17,17,0.85);
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 40px;
}

.release-card:hover .play-icon { opacity: 1; }

.release-info { padding: 16px; }

.release-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
}

.release-info .meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-top: 4px;
  text-transform: uppercase;
}

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

.release-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
  border-bottom: 1px solid var(--red);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

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

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: filter 0.3s, transform 0.3s;
  filter: grayscale(30%);
}

.gallery-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
  z-index: 1;
  position: relative;
}

.gallery-grid .wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* ── SHOP PREVIEW ── */
.shop-preview { background: var(--off-black); }

.shop-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.shop-preview-img {
  position: relative;
  overflow: hidden;
}

.shop-preview-img img {
  width: 100%;
  display: block;
}

.shop-preview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
}

.shop-preview-text h2 {
  font-size: clamp(48px, 7vw, 88px);
}

.shop-preview-text p {
  color: var(--light-grey);
  margin: 20px 0 32px;
  line-height: 1.8;
}

.price-tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--gold);
  margin-bottom: 24px;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  padding: 60px 60px 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
}

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

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}

.footer-nav h4 {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 12px; }
.footer-nav a {
  color: var(--light-grey);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}

.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--grey);
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* Legal / cookie-settings links sit in the footer bar — keep them the same
   weight as the copyright text rather than default link blue. */
.footer-bottom a {
  color: var(--grey);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 700px) {
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ── SHOP PAGE ── */
.page-hero {
  padding: 140px 60px 80px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(60px, 10vw, 130px); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  padding: 0 60px 100px;
}

.product-card {
  background: var(--card-bg);
  overflow: hidden;
}

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

.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
}

.product-card:hover .product-card-img img { transform: scale(1.04); }

.product-card-body { padding: 24px; }

.product-card-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.product-card-body .product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 20px;
}

.size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.size-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--light-grey);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn:hover, .size-btn.active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

/* ── CHECKOUT PAGE ── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  padding: 0 60px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-form h2 {
  font-size: 36px;
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

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

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

.order-summary {
  background: var(--card-bg);
  padding: 32px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.order-summary h2 {
  font-size: 28px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.order-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.order-item img {
  width: 80px; height: 80px;
  object-fit: cover;
  object-position: center top;
}

.order-item-details h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
}

.order-item-details p {
  font-size: 12px;
  color: var(--grey);
  margin-top: 4px;
}

.order-total {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 20px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--light-grey);
}

.order-total-row.grand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ── ADMIN PAGE ── */
.admin-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-login {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.admin-login-box {
  width: 100%;
  max-width: 440px;
  text-align: center;
}

.admin-login-box .logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}

.admin-login-box .logo span { color: var(--red); }

.admin-login-box p {
  color: var(--grey);
  margin-bottom: 40px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: var(--white);
  color: #111;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.google-btn:hover { background: #e8e8e8; }

.admin-panel { padding: 40px 60px 100px; }

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.admin-header h1 {
  font-size: 52px;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--grey);
}

.admin-user img {
  width: 36px; height: 36px;
  border-radius: 50%;
}

.shows-table {
  width: 100%;
  border-collapse: collapse;
}

.shows-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.shows-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 13px;
}

.shows-table td:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  white-space: nowrap;
}

.action-btns {
  display: flex;
  gap: 8px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.btn-danger {
  background: transparent;
  border: 1px solid rgba(204,17,17,0.4);
  color: var(--red);
  font-family: 'Space Mono', monospace;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-danger:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.hidden { display: none; }

/* Generic hide helper — the modal rule above only matched .modal-overlay,
   so anything else marked .hidden was still showing. */
.hidden { display: none !important; }

.modal-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 560px;
  padding: 48px;
}

.modal-box h2 {
  font-size: 40px;
  margin-bottom: 32px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--off-black);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 16px 24px;
  font-size: 13px;
  z-index: 9000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── CART ── */
.cart-count {
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
  margin-top: -10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  section { padding: 80px 30px; }
  nav { padding: 0 24px; }
  .hero-content { padding: 0 30px 60px; }

  .about-grid, .shop-preview-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; margin-bottom: 40px; }

  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 2; }

  .footer-top { grid-template-columns: 1fr 1fr; }

  .admin-panel { padding: 30px 24px; }
  .show-item { grid-template-columns: 100px 1fr; }
  .show-price, .show-tickets { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(8,8,8,0.98); padding: 20px 24px 30px; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero h1 { font-size: clamp(72px, 22vw, 120px); }
  .hero-content { padding: 0 24px 50px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .page-hero, .shop-grid, .checkout-layout { padding-left: 24px; padding-right: 24px; }

  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 40px 24px 30px; }

  .modal-box { padding: 28px 24px; }
}
