/* ============================================
   MEREDITH KERR COMEDY — Redesign
   Twilight indigo base, hot pink accent
   ============================================ */

:root {
  --ink:      #0E0B26;
  --ink-2:    #1A1438;
  --paper:    #F5F1E8;
  --paper-2:  #B9B3A3;
  --pop:      #FF2E63;
  --pop-2:    #FF6F9A;
  --acid:     #C7F465;
  --line:     rgba(245, 241, 232, 0.12);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --step-0: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --step-1: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  --step-2: clamp(1.6rem, 1.3rem + 1vw, 2.2rem);
  --step-3: clamp(2.4rem, 1.8rem + 2.5vw, 4rem);
  --step-4: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  --step-5: clamp(4.5rem, 3rem + 9vw, 12rem);

  --max: 1280px;
  --pad: clamp(1.25rem, 3vw, 3rem);
  --radius: 4px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- Layout ---- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pop);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--paper);
  color: var(--paper);
  background: transparent;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--paper); color: var(--ink); }

.btn--pop {
  background: var(--pop);
  border-color: var(--pop);
  color: var(--ink);
}
.btn--pop:hover { background: var(--pop-2); border-color: var(--pop-2); color: var(--ink); }

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: linear-gradient(to bottom, rgba(14,11,38,0.92), rgba(14,11,38,0.6));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.nav__brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  font-weight: 400;
  color: var(--paper-2);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper-2);
  transition: color 0.15s;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--paper); }
.nav__cta {
  background: var(--pop);
  color: var(--ink) !important;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.nav__cta:hover { background: var(--pop-2); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--pop);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem var(--pad) 4rem;
  max-width: var(--max);
  margin: 0 auto;
}

.hero__tagline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pop);
  margin-bottom: 2rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--step-5);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--pop);
  font-weight: 600;
}

.hero__sub {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--paper);
  max-width: 28ch;
  margin-bottom: 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-2);
  border-radius: 2px;
  overflow: hidden;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}
.hero__photo::after {
  content: "";
  position: absolute;
  bottom: -2px; right: -2px;
  width: 80px; height: 80px;
  background: var(--pop);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.hero__caption {
  position: absolute;
  bottom: 1rem; left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
  z-index: 2;
  mix-blend-mode: difference;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 6rem; gap: 2rem; }
  .hero__photo { max-width: 380px; }
}

/* ============ PHOTO STRIP ============ */
.photo-strip {
  padding: 2rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.photo-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.photo-strip__grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 2px;
  filter: contrast(1.05) saturate(0.95);
  transition: filter 0.3s;
}
.photo-strip__grid img:hover {
  filter: contrast(1.1) saturate(1.1);
}
@media (max-width: 768px) {
  .photo-strip__grid { grid-template-columns: 1fr; }
  .photo-strip__grid img { height: 240px; }
}

/* ============ FESTIVAL MARQUEE ============ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  overflow: hidden;
}
.strip__inner {
  display: flex;
  gap: 4rem;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.strip__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--paper-2);
  display: flex;
  align-items: center;
  gap: 4rem;
}
.strip__item::after {
  content: "\2726";
  color: var(--pop);
  font-style: normal;
  font-weight: 400;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ WATCH ============ */
.watch {
  padding: 4rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.watch__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.watch__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  line-height: 1;
}
.watch__title em { color: var(--pop); font-style: italic; font-weight: 600; }

.watch__video {
  aspect-ratio: 16/9;
  background: var(--ink-2);
  border-radius: 2px;
  overflow: hidden;
}
.watch__video iframe { width: 100%; height: 100%; border: 0; }

/* ============ SHOWS LIST ============ */
.shows-list {
  padding: 6rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.shows-list__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  margin-bottom: 3rem;
}
.shows-list__title em { color: var(--pop); font-style: italic; font-weight: 600; }

.show {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  transition: padding 0.2s ease;
}
.show:hover { padding-left: 1rem; }
.show:last-child { border-bottom: 1px solid var(--line); }

.show__date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper-2);
}
.show__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  line-height: 1.1;
}
.show__venue {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--paper-2);
  margin-top: 0.25rem;
}
.show__badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pop);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--pop);
  border-radius: 2px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.show.is-past { opacity: 0.6; }

.no-shows {
  text-align: center;
  color: var(--paper-2);
  font-style: italic;
}
.no-shows a { color: var(--pop); }

@media (max-width: 700px) {
  .show { grid-template-columns: 1fr; gap: 0.5rem; }
  .show__cta { justify-self: start; margin-top: 0.5rem; }
}

/* ============ CREDITS ============ */
.credits {
  padding: 6rem var(--pad);
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credits__wrap { max-width: var(--max); margin: 0 auto; }
.credits__title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--paper-2);
  margin-bottom: 2rem;
  text-align: center;
}
.credits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem 3rem;
  align-items: center;
  justify-items: center;
}
.credits__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--paper);
  text-align: center;
  line-height: 1.2;
  opacity: 0.85;
}
.credits__item small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-style: normal;
  color: var(--pop);
  margin-top: 0.4rem;
}

/* ============ ABOUT ============ */
.about {
  padding: 8rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__photo {
  aspect-ratio: 1/1;
  background: var(--ink-2);
  border-radius: 2px;
  overflow: hidden;
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  line-height: 1;
  margin-bottom: 2rem;
}
.about__title em { color: var(--pop); font-style: italic; font-weight: 600; }
.about__body p { margin-bottom: 1rem; color: var(--paper-2); }
.about__body p strong { color: var(--paper); font-weight: 500; }

/* About page full layout */
.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 6rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.about-photo {
  width: 100%;
  border-radius: 2px;
}
.about-text h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  margin-bottom: 1rem;
}
.about-text h1 em { color: var(--pop); font-style: italic; font-weight: 600; }
.about-text p { color: var(--paper-2); margin-bottom: 1rem; font-size: var(--step-0); }
.about-text p strong { color: var(--paper); }
.about-text .highlights {
  list-style: none;
  margin: 1.5rem 0;
}
.about-text .highlights li {
  padding: 0.4rem 0;
  color: var(--paper-2);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.about-text .highlights li::before {
  content: "\2726 ";
  color: var(--pop);
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { max-width: 300px; margin: 0 auto; }
}

/* ============ BOOK CTA ============ */
.book {
  padding: 8rem var(--pad);
  background: var(--pop);
  color: var(--ink);
  text-align: center;
}
.book__inner { max-width: 800px; margin: 0 auto; }
.book__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.book__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--step-4);
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.book__title em { font-style: italic; }
.book__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.book .btn {
  border-color: var(--ink);
  color: var(--ink);
}
.book .btn:hover { background: var(--ink); color: var(--pop); }
.book .btn--solid { background: var(--ink); color: var(--pop); }
.book .btn--solid:hover { background: transparent; color: var(--ink); }

/* ============ EPK ============ */
.epk-header {
  text-align: center;
  margin-bottom: 3rem;
}
.epk-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  margin-bottom: 0.5rem;
}
.epk-header h1 em { color: var(--pop); font-style: italic; font-weight: 600; }
.epk-header p { color: var(--paper-2); }

.epk-section { margin-bottom: 3rem; }
.epk-section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: var(--step-2);
  color: var(--pop);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.epk-bio { color: var(--paper-2); font-size: var(--step-0); line-height: 1.8; }
.epk-bio p { margin-bottom: 1rem; }
.epk-bio p strong { color: var(--paper); }

.epk-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.epk-stat {
  background: var(--ink-2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
}
.epk-stat .stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-2);
}
.epk-stat .stat-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.3rem;
}
.epk-stat .stat-value a { color: var(--pop); }

.epk-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.epk-photo-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: border-color 0.3s;
}
.epk-photo-link:hover { border-color: var(--pop); }
.epk-photo-link img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.epk-photo-dl {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(14, 11, 38, 0.85);
  color: var(--pop);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.6rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.epk-photo-link:hover .epk-photo-dl { opacity: 1; }

/* Fallback for non-link photos */
.epk-photos img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid var(--line);
}

.epk-download {
  text-align: center;
  padding: 2rem;
  background: var(--ink-2);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.epk-download p { color: var(--paper-2); margin-bottom: 0; }

/* ============ BLOG ============ */
.blog-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem var(--pad);
}
.blog-list h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  text-align: center;
  margin-bottom: 2rem;
}
.blog-list h1 em { color: var(--pop); font-style: italic; font-weight: 600; }

.blog-card {
  display: block;
  background: var(--ink-2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.2s;
  color: var(--paper);
}
.blog-card:hover {
  border-color: var(--pop);
  transform: translateY(-2px);
}
.blog-card time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pop);
}
.blog-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0.3rem 0 0.5rem;
  line-height: 1.15;
}
.blog-card p { color: var(--paper-2); font-size: 0.95rem; }

/* Blog post */
.blog-post {
  max-width: 750px;
  margin: 0 auto;
  padding: 6rem var(--pad) 4rem;
}
.post-header { margin-bottom: 2rem; }
.post-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  margin-bottom: 0.5rem;
}
.post-header time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--pop);
  letter-spacing: 0.1em;
}

.post-content { color: var(--paper-2); font-size: var(--step-0); line-height: 1.8; }
.post-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--paper);
  font-size: var(--step-2);
  margin: 2rem 0 1rem;
}
.post-content h3 {
  font-family: var(--font-display);
  color: var(--pop);
  font-size: var(--step-1);
  margin: 1.5rem 0 0.75rem;
}
.post-content p { margin-bottom: 1rem; }
.post-content ul, .post-content ol { margin: 1rem 0; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content blockquote {
  border-left: 3px solid var(--pop);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: var(--paper);
  font-family: var(--font-display);
  font-style: italic;
}
.post-content strong { color: var(--paper); }

.back-link {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--pop);
  letter-spacing: 0.1em;
}

/* ============ CONTACT ============ */
.contact-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 6rem var(--pad);
  text-align: center;
}
.contact-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-3);
  margin-bottom: 1rem;
}
.contact-page h1 em { color: var(--pop); font-style: italic; font-weight: 600; }
.contact-page > p { color: var(--paper-2); margin-bottom: 2rem; }

.contact-form { text-align: left; }
.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-2);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--pop);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; }

.contact-social {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.contact-social a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-2);
}
.contact-social a:hover { color: var(--pop); }

/* ============ FOOTER ============ */
.footer {
  padding: 4rem var(--pad) 2rem;
  border-top: 1px solid var(--line);
}
.footer__wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 0.9;
  margin-bottom: 0.5rem;
}
.footer__brand em { color: var(--pop); font-style: italic; }
.footer__tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-2);
}
.footer__socials {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer__socials a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper-2);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.15s;
}
.footer__socials a:hover { color: var(--pop); border-color: var(--pop); }
.footer__legal {
  margin-top: 3rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--paper-2);
  opacity: 0.6;
  text-align: center;
}

/* ============ PAGE CONTENT (generic) ============ */
.page-content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem var(--pad);
}

section {
  padding: 6rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
    gap: 2rem;
    min-height: auto;
    text-align: center;
  }
  .hero__photo { max-width: 380px; margin: 0 auto; }
  .hero__sub { max-width: 100%; }
  .hero__ctas { justify-content: center; }

  /* About sections */
  .about { grid-template-columns: 1fr; gap: 2rem; }
  .about__photo { max-width: 320px; margin: 0 auto; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photo { max-width: 300px; margin: 0 auto; }

  /* Footer */
  .footer__wrap { grid-template-columns: 1fr; text-align: center; }
  .footer__socials { justify-content: center; }
}

@media (max-width: 768px) {
  /* Nav mobile menu */
  .nav-toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(14,11,38,0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links.open { display: flex; }

  /* Hero title */
  .hero__title { font-size: clamp(3rem, 2rem + 5vw, 5rem); }

  /* Photo strip */
  .photo-strip__grid { grid-template-columns: 1fr; }
  .photo-strip__grid img { height: 240px; }

  /* Marquee text smaller */
  .strip__item { font-size: 1.2rem; gap: 2rem; }
  .strip__inner { gap: 2rem; }

  /* Shows */
  .show { grid-template-columns: 1fr; gap: 0.5rem; }
  .show:hover { padding-left: 0; }
  .show__cta { justify-self: start; margin-top: 0.5rem; }

  /* Credits */
  .credits__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* EPK */
  .epk-stats { grid-template-columns: 1fr; }
  .epk-photos { grid-template-columns: 1fr 1fr; }

  /* Book CTA */
  .book { padding: 4rem var(--pad); }
  .book__title { font-size: var(--step-3); }
  .book__ctas { flex-direction: column; align-items: center; }

  /* Blog */
  .blog-list { padding: 4rem var(--pad); }
}

@media (max-width: 480px) {
  .hero__photo { max-width: 280px; }
  .hero__photo::after { width: 50px; height: 50px; }

  .photo-strip__grid img { height: 200px; }

  .epk-photos { grid-template-columns: 1fr; }
  .credits__grid { grid-template-columns: 1fr; }

  .nav__brand { font-size: 0.95rem; }

  .btn { padding: 0.75rem 1.25rem; font-size: 0.8rem; }

  .footer__socials { flex-wrap: wrap; gap: 1rem; justify-content: center; }
}
