/* ============================================
   SAINT STELLA — Global Stylesheet
   Dark. Glamorous. Professional. Urgent.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=EB+Garamond:ital,wght@0,400;0,500;1,400;1,500&family=Montserrat:wght@300;400;600;700&display=swap');

/* ============ RESET & BASE ============ */

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

:root {
  --black:       #000000;
  --deep:        #0d0d0d;
  --charcoal:    #1a1a1a;
  --red:         #b5341a;
  --red-bright:  #cc4228;
  --gold:        #c9903a;
  --gold-light:  #eacc78;
  --cream:       #f7edd8;
  --parchment:   #d8bc92;
  --white:       #fef5e4;
  --grey:        #9a8468;
  --grey-light:  #c4aa8c;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;
  --font-sans:    'Montserrat', Helvetica, sans-serif;

  --max-width: 1200px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

/* ============ NOISE TEXTURE OVERLAY ============ */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.2;
}

/* ============ NAVIGATION ============ */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0) 100%);
  transition: background var(--transition);
}

nav.scrolled {
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-transform: uppercase;
}

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

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  border: 1px solid rgba(240,232,216,0.18);
  padding: 0.45rem 0.85rem;
  transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-color: rgba(201,168,76,0.6);
}

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

.nav-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--cream);
  transition: var(--transition);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  filter: brightness(0.6);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.4) 45%,
    rgba(0,0,0,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.45);
  padding: 0.55rem 1.1rem;
  margin-bottom: 1.6rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--parchment);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,57,43,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,232,216,0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

/* ============ SECTION BASE ============ */

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

.section-full {
  max-width: 100%;
  padding: 6rem 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--parchment);
  max-width: 680px;
  line-height: 1.8;
}

/* ============ DIVIDERS ============ */

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

.divider-center {
  margin: 2rem auto;
}

/* ============ ACHIEVEMENT TICKER ============ */

.ticker-wrap {
  background: var(--red);
  border-top: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  overflow: hidden;
  padding: 0.8rem 0;
  width: 100%;
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 3rem;
}

.ticker-item::after {
  content: '◆';
  margin-left: 3rem;
  color: rgba(247,237,216,0.5);
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ ABOUT STRIP ============ */

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
}

.about-strip-image {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.about-strip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(5%) contrast(1.05);
  transition: transform 0.8s ease;
}

.about-strip-image:hover img {
  transform: scale(1.04);
}

.about-strip-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 65%, var(--black));
}

.about-strip-text {
  background: var(--deep);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 2rem;
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
}

/* ============ SHOWS / CARDS ============ */

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  max-width: 100%;
}

.show-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.show-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.85);
  transition: all 0.6s ease;
}

.show-card:hover img {
  filter: grayscale(0%) brightness(1.0);
  transform: scale(1.05);
}

.show-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.show-card-label {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.show-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.show-card-desc {
  font-size: 0.85rem;
  color: var(--grey-light);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.show-card:hover .show-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.show-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.show-card:hover .show-card-link {
  opacity: 1;
}

/* ============ CAROUSEL ============ */

.carousel-section {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.carousel-track {
  display: flex;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.carousel-slide {
  min-width: 100%;
  position: relative;
  height: 70vh;
  overflow: hidden;
  background: #000;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: brightness(0.55) contrast(1.05);
}
.carousel-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.carousel-slide-content {
  position: absolute;
  bottom: 3rem;
  left: 3.5rem;
  z-index: 2;
}
.carousel-slide-content .show-card-label {
  display: inline-block;
  margin-bottom: 0.6rem;
}
.carousel-slide-content h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.carousel-slide-content p {
  color: var(--grey-light);
  font-size: 0.9rem;
}
.carousel-controls {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.carousel-dot {
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.carousel-dot.active {
  background: var(--gold);
}
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: border-color 0.2s, background 0.2s;
}
.carousel-prev:hover,
.carousel-next:hover {
  border-color: var(--gold);
  background: rgba(0,0,0,0.7);
}
.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }

/* ============ STATS BAR ============ */

.stats-bar {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 3.5rem 3rem;
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 100%;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 1rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.15);
  max-width: 220px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ============ INSTAGRAM SECTION ============ */

.instagram-section {
  background: var(--deep);
  padding: 5rem 3rem;
  max-width: 100%;
}

.instagram-header {
  text-align: center;
  margin-bottom: 3rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
}

.instagram-post {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--charcoal);
  cursor: pointer;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  filter: grayscale(8%);
}

.instagram-post:hover img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.instagram-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.instagram-post:hover .instagram-post-overlay {
  opacity: 1;
}

.instagram-post-overlay .ig-icon {
  font-size: 2rem;
  color: var(--white);
}

.instagram-post-caption {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.4;
}

.instagram-placeholder {
  aspect-ratio: 1;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 1px solid rgba(201,168,76,0.1);
}

.instagram-placeholder .placeholder-icon {
  font-size: 3rem;
  color: var(--grey);
}

.instagram-placeholder p {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  text-transform: uppercase;
}

.instagram-follow {
  text-align: center;
}

.ig-handle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--grey-light);
  margin-bottom: 1.2rem;
  display: block;
}

/* ============ PRESS QUOTES ============ */

.press-section {
  background: var(--black);
  padding: 6rem 3rem;
  max-width: 100%;
  text-align: center;
}

.press-quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 3rem auto 0;
}

.press-quote {
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
}

.press-quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
  opacity: 0.6;
}

.press-quote-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.press-quote-source {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ PAGE HERO (inner pages) ============ */

.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 3rem 4rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.52) contrast(1.05);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.25) 60%,
    transparent 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* ============ CONTENT BLOCKS ============ */

.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 3rem;
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.content-body {
  font-size: 1.05rem;
  color: var(--parchment);
  line-height: 1.85;
}

.content-body p {
  margin-bottom: 1.5rem;
}

.content-body p:last-child {
  margin-bottom: 0;
}

.content-body strong {
  color: var(--cream);
  font-weight: 600;
}

/* ============ THEATRE TABLE ============ */

.credits-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.credits-table th {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  text-align: left;
}

.credits-table td {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--parchment);
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  vertical-align: top;
  line-height: 1.5;
}

.credits-table tr:hover td {
  background: rgba(201,168,76,0.04);
  color: var(--cream);
}

.credit-role {
  color: var(--cream);
  font-weight: 500;
}

.credit-company {
  color: var(--grey-light);
  font-size: 0.85rem;
}

/* ============ UPCOMING DATES ============ */

.dates-list {
  list-style: none;
  margin-top: 2rem;
}

.dates-list li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.dates-list .date-when {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

.dates-list .date-info strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.dates-list .date-info span {
  font-size: 0.85rem;
  color: var(--grey-light);
}

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

footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 4rem 3rem 2rem;
  max-width: 100%;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .nav-logo {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--grey);
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--grey);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color var(--transition);
}

.footer-socials a:hover {
  color: var(--gold);
}

/* ============ LOUISE PAGE SPECIFIC ============ */

.louise-title-block {
  position: relative;
}

.louise-title-block .big-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.louise-title-block .big-title .red-word {
  color: var(--red);
  display: block;
}

.tagline-display {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
}

.newspaper-texture {
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(201,168,76,0.03) 28px,
      rgba(201,168,76,0.03) 29px
    ),
    var(--deep);
}

/* ============ BURLESQUE PAGE ============ */

.burlesque-intro {
  position: relative;
}

.feather-border {
  border-top: 1px solid var(--gold);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

/* ============ SCROLL FADE-IN ============ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

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

@media (max-width: 1100px) {
  nav {
    padding: 1.2rem 1.8rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--deep);
    border-left: 1px solid rgba(201,168,76,0.15);
    flex-direction: column;
    gap: 0;
    padding: 5rem 2rem 2rem;
    z-index: 999;
  }

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

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
  }

  .nav-links a {
    font-size: 0.8rem;
    border: none;
    padding: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-content {
    padding: 0 1.5rem 4rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .about-strip-image {
    min-height: 350px;
  }

  .about-strip-image::after {
    background: linear-gradient(to bottom, transparent 60%, var(--black));
  }

  .about-strip-text {
    padding: 3rem 1.5rem;
  }

  .stats-bar {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2.5rem 1.5rem;
  }

  .stat-item {
    border-right: none;
    max-width: 45%;
  }

  .content-two-col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .dates-list li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .shows-grid {
    grid-template-columns: 1fr;
  }

  .press-quotes {
    grid-template-columns: 1fr;
  }
}
