:root {
  --ink: #0b0a0c;
  --ink-soft: #141215;
  --paper: #f1ebe1;
  --wine: #6a1223;
  --ember: #c4482c;
  --smoke: #948d86;
  --border: rgba(241, 235, 225, 0.1);
  --orange: #ff7f00;

  --font-display: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
}

/* ============================================================
   RESET
============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

::selection {
  background: rgba(196, 72, 44, 0.35);
}

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   TYPOGRAPHY
============================================================ */

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ember);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--smoke);
}

.section-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}

.section-lede {
  max-width: 42rem;
  color: rgba(241, 235, 225, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.arrow {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 0.25s ease;
}

a:hover .arrow {
  transform: translate(2px, -2px);
}

.arrow-lg {
  font-size: 1.4rem;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(11, 10, 12, 0.85);
  border-bottom: 1px solid var(--border);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;

  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-brand-text {
  white-space: nowrap;
}

.nav-logo-circle {
  width: 56px;
  height: 56px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border-radius: 50%;

  border: 2px solid #b8860b;

  background: #000;

  box-shadow:
    0 0 12px rgba(234, 179, 8, 0.25);

  position: relative;
}

.nav-logo {
  width: 165%;
  height: 165%;

  max-width: none;

  flex-shrink: 0;

  display: block;

  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;

  color: rgba(241, 235, 225, 0.7);

  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 0.2s ease;
}

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

.nav-cta {
  display: none;

  padding: 0.6rem 1.2rem;

  background: var(--wine);
  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--ember);
  transform: translateY(-1px);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;

  padding: 0.4rem;

  background: none;
  border: 0;

  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;

  background: var(--paper);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;

  padding: 0 1.5rem 1.5rem;

  color: rgba(241, 235, 225, 0.75);

  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-cta-mobile {
  margin-top: 0.5rem;
  padding: 0.75rem 1.2rem;

  background: var(--wine);
  border-radius: 999px;

  color: var(--paper);
  font-weight: 700;
  text-align: center;
}

@media (min-width: 860px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-block;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;

  padding: 0.9rem 1.5rem;

  border-radius: 999px;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn-primary {
  background: var(--wine);
}

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

.btn-ghost {
  border: 1px solid rgba(241, 235, 225, 0.2);
}

.btn-ghost:hover {
  background: rgba(241, 235, 225, 0.05);
  border-color: rgba(241, 235, 225, 0.4);
}

.text-link {
  display: inline-flex;
  align-items: center;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: underline;
  text-decoration-color: rgba(241, 235, 225, 0.2);
  text-underline-offset: 4px;
  text-transform: uppercase;

  transition: text-decoration-color 0.2s ease;
}

.text-link:hover {
  text-decoration-color: var(--paper);
}

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

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      ellipse 70% 60% at 30% 20%,
      rgba(106, 18, 35, 0.55),
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 80%,
      rgba(196, 72, 44, 0.25),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      #0b0a0c 0%,
      #1a0d10 55%,
      #0b0a0c 100%
    );
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.62) 30%,
      rgba(0, 0, 0, 0.28) 60%,
      rgba(0, 0, 0, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.05) 42%,
      rgba(0, 0, 0, 0.68) 100%
    ),
    radial-gradient(
      ellipse 75% 65% at 25% 50%,
      rgba(106, 18, 35, 0.22),
      transparent 70%
    );
}

.hero-overlay::after {
  content: "";

  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 80px
  );

  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 84rem;
  margin: 0 auto;

  padding: 6rem 1.5rem;
}

.hero-title {
  margin: 0.5rem 0 0;

  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.85;

  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.45),
    0 8px 40px rgba(0, 0, 0, 0.35);
}

.hero-copy {
  max-width: 34rem;
  margin: 1.5rem 0 0;

  color: rgba(241, 235, 225, 0.8);

  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;

  margin-top: 2.2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  z-index: 3;

  color: var(--smoke);

  font-size: 1.2rem;

  transform: translateX(-50%);

  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

/* ============================================================
   GENERAL SECTIONS
============================================================ */

.section {
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

/* ============================================================
   CURRENT PRODUCTION
============================================================ */

.current {
  padding-top: 4rem;
}

.current-card {
  position: relative;

  min-height: 32rem;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 2rem;
}

.current-bg {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      ellipse 80% 60% at 70% 30%,
      rgba(106, 18, 35, 0.5),
      transparent 60%
    ),
    linear-gradient(
      120deg,
      #1a0d10 0%,
      #0b0a0c 70%
    );
}

.current-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow-wrap: normal;
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.current-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    transparent 55%
  );
}

.current-content {
  position: relative;
  z-index: 2;

  padding: 3.5rem 2rem;
}

@media (min-width: 768px) {
  .current-content {
    padding: 5rem 3.5rem;
  }
}

.current-panel {
  max-width: 26rem;
  margin-top: 3rem;
  padding: 1.8rem 2rem;

  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(241, 235, 225, 0.15);
  border-radius: 1.5rem;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.micro {
  margin: 0 0 0.75rem;

  color: var(--smoke);

  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.panel-title {
  margin: 0 0 0.75rem;

  font-family: var(--font-display);
  font-size: 1.8rem;
}

.panel-copy {
  margin: 0 0 1.6rem;

  color: rgba(241, 235, 225, 0.7);

  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   UPCOMING PERFORMANCES — CENTER POSTER
============================================================ */

.poster-card {
  margin-top: 2.5rem;

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}

.poster-img {
  display: block;

  width: 100%;
  max-width: 22rem;
  height: auto;

  aspect-ratio: 2 / 3;
  object-fit: cover;

  border-radius: 1.25rem;

  border: 1px solid var(--border);

  box-shadow:
    0 25px 50px -12px
    rgba(0, 0, 0, 0.6);
}

/* ============================================================
   COMPANY
============================================================ */

.company {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.company-grid {
  width: 100%;
  max-width: 84rem;
  margin: 0 auto;

  display: grid;
}

.company-col {
  padding: 3rem 1.5rem;
}

.company-col-border {
  border-top: 1px solid var(--border);
}

@media (min-width: 900px) {
  .company-grid {
    grid-template-columns: 1fr 1fr;
  }

  .company-col {
    padding: 4.5rem 3.5rem;
  }

  .company-col-border {
    border-top: 0;
    border-left: 1px solid var(--border);
  }
}

.company-title {
  margin: 1rem 0 0;

  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.company-copy {
  margin: 0 0 1.8rem;

  color: rgba(241, 235, 225, 0.75);

  font-size: 1.05rem;
  line-height: 1.75;
}

.company-img {
  width: 100%;
  aspect-ratio: 4 / 3;


  margin-top: 2rem;

  border-radius: 1.25rem;

  object-fit: cover;
}

/* ============================================================
   PUBLICATION
============================================================ */

.publication {
  position: relative;

  min-height: 680px;
  padding: 0 !important;

  display: flex;
  align-items: stretch;

  overflow: hidden;

  background: #0b0a0c;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.publication-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    radial-gradient(
      ellipse 70% 80% at 15% 70%,
      rgba(106, 18, 35, 0.55),
      transparent 65%
    ),
    linear-gradient(
      135deg,
      #1a0d10 0%,
      #0b0a0c 65%
    );
}

.publication-img {
  position: absolute;
  inset: 0;
  z-index: 1;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  opacity: 0.78;

  filter: saturate(0.88) contrast(1.05);

  transform: scale(1.01);

  transition:
    transform 1s ease,
    opacity 0.6s ease;
}

.publication:hover .publication-img {
  opacity: 0.86;
  transform: scale(1.025);
}

.publication-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.78) 30%,
      rgba(0, 0, 0, 0.42) 58%,
      rgba(0, 0, 0, 0.62) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.15) 45%,
      rgba(0, 0, 0, 0.82) 100%
    ),
    radial-gradient(
      ellipse 65% 75% at 15% 70%,
      rgba(106, 18, 35, 0.28),
      transparent 70%
    );
}

.publication-overlay::after {
  content: "";

  position: absolute;
  inset: 0;

  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 80px
  );

  opacity: 0.25;
}

.publication-content {
  position: relative;
  z-index: 3;

  width: 100%;
  max-width: 84rem;
  margin: 0 auto;

  padding: 6rem 4rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.publication-content .eyebrow {
  margin-bottom: 1.25rem;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.publication-content .section-title {
  max-width: 700px;
  margin: 0 0 2.75rem;

  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;

  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.65);
}

.publication-link {
  display: block;

  max-width: 850px;
  margin: 0;
  padding: 2rem 0 0;

  border-top: 1px solid rgba(241, 235, 225, 0.18);

  transition: border-color 0.3s ease;
}

.publication-link:hover {
  border-color: rgba(196, 72, 44, 0.55);
}

.publication-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 3rem;
}

.publication-title {
  max-width: 720px;
  margin: 0 0 1rem;

  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;

  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);

  transition: color 0.3s ease;
}

.publication-link:hover .publication-title {
  color: #ffffff;
}

.publication-excerpt {
  max-width: 620px;
  margin: 0;

  color: rgba(241, 235, 225, 0.76);

  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  line-height: 1.75;

  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.publication-row .arrow-lg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.25);

  border: 1px solid rgba(241, 235, 225, 0.2);
  border-radius: 50%;

  color: var(--paper);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.publication-link:hover .publication-row .arrow-lg {
  background: var(--wine);
  border-color: var(--wine);

  transform: translate(3px, -3px);
}

.publication-cta {
  width: fit-content;

  display: inline-flex;
  align-items: center;

  margin: 1.75rem 0 0;
  padding-bottom: 0.35rem;

  border-bottom: 1px solid rgba(241, 235, 225, 0.45);

  color: var(--paper);

  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.publication-link:hover .publication-cta {
  color: #ffffff;
  border-color: var(--ember);
}

@media (min-width: 1000px) {
  .publication {
    min-height: 720px;
  }

  .publication-content {
    padding: 7rem 5rem;
  }

  .publication-content .section-title {
    margin-bottom: 3.25rem;
  }
}

@media (max-width: 999px) {
  .publication {
    min-height: 650px;
  }

  .publication-content {
    padding: 5rem 2.5rem;
  }
}

@media (max-width: 699px) {
  .publication {
    min-height: 680px;
  }

  .publication-img {
    object-position: 62% center;
  }

  .publication-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.48) 0%,
        rgba(0, 0, 0, 0.72) 38%,
        rgba(0, 0, 0, 0.94) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.15)
      );
  }

  .publication-content {
    padding: 4rem 1.5rem;
  }

  .publication-content .section-title {
    margin-bottom: 2.25rem;

    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .publication-link {
    padding-top: 1.5rem;
  }

  .publication-row {
    gap: 1rem;
  }

  .publication-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .publication-excerpt {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .publication-row .arrow-lg {
    width: 42px;
    height: 42px;

    font-size: 1.05rem;
  }

  .publication-cta {
    margin-top: 1.5rem;
  }
}

@media (max-width: 420px) {
  .publication {
    min-height: 700px;
  }

  .publication-content {
    padding: 3.5rem 1.25rem;
  }

  .publication-row {
    display: block;
  }

  .publication-row .arrow-lg {
    margin-top: 1.25rem;
  }
}

/* ============================================================
   INTERVIEWS
   CLEAN SINGLE VIDEO SYSTEM
============================================================ */

.interviews-section {
  position: relative;
}

.video-grid {
  width: 100%;
  margin-top: 2.75rem;

  display: grid;
  grid-template-columns: 1fr;

  gap: 2rem;
}

@media (min-width: 760px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1100px) {
  .video-grid {
    gap: 2rem;
  }
}

/* ============================================================
   VIDEO CARD
============================================================ */

.video-card {
  position: relative;

  width: 100%;
  min-width: 0;

  overflow: hidden;

  background: #111013;

  border: 1px solid rgba(241, 235, 225, 0.1);
  border-radius: 1.35rem;

  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.video-card:hover {
  border-color: rgba(196, 72, 44, 0.45);

  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.45);

  transform: translateY(-5px);
}

/* ============================================================
   COMMON VIDEO FRAME

   Every video card (YouTube AND Facebook) now shares this exact
   same 16:9 frame, so cards in the grid are always the same
   size regardless of source.
============================================================ */

.video-media,
.video-frame-wrap,
.youtube-media,
.youtube-video,
.facebook-media,
.facebook-video {
  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #000;
}

/* ============================================================
   YOUTUBE VIDEO
============================================================ */

.youtube-media iframe,
.youtube-video iframe,
.video-frame-wrap.youtube-video iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  border: 0;
}

/* ============================================================
   FACEBOOK VIDEO

   Fixed to match the YouTube card exactly: same 16:9 frame
   (set above), iframe fills the entire frame edge-to-edge.
   Facebook's own player handles the reel's internal aspect
   ratio — no more shrinking the whole embed down to a narrow
   floating strip with a blurred backdrop around it.
============================================================ */

.facebook-backdrop {
  display: none;
}

.facebook-reel {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background: #000;

  transform: none;
  box-shadow: none;
}

.facebook-reel iframe,
.facebook-media > iframe,
.facebook-video > iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  min-width: 100%;
  min-height: 100%;
  max-width: none;

  display: block;

  border: 0;

  background: #000;

  transform: none;
  box-shadow: none;
}

/* ============================================================
   MOBILE VIDEO
============================================================ */

@media (max-width: 759px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .video-card {
    border-radius: 1.1rem;
  }

  .video-media,
  .video-frame-wrap,
  .youtube-media,
  .youtube-video,
  .facebook-media,
  .facebook-video {
    aspect-ratio: 16 / 9;
  }

  .video-meta {
    padding: 1rem 1.1rem 1.15rem;
  }
}

/* ============================================================
   EMPTY STATE
============================================================ */

.empty-state {
  width: 100%;

  margin-top: 2rem;
  padding: 2.5rem;

  background: rgba(241, 235, 225, 0.03);

  border: 1px solid var(--border);
  border-radius: 1.25rem;

  color: var(--smoke);

  font-size: 0.9rem;

  text-align: center;
}

/* ============================================================
   IMAGE PLACEHOLDERS
============================================================ */

.js-placeholder {
  background: rgba(241, 235, 225, 0.04);
}

.js-placeholder.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 1rem;

  border: 1px dashed rgba(241, 235, 225, 0.25);

  color: var(--smoke);

  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.js-placeholder.is-empty::after {
  content: attr(data-label);
}

/* ============================================================
   REVEAL ANIMATION
============================================================ */

.reveal {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;

  transform: translateY(0);
}
/* ============================================================
   FOOTER
============================================================ */

.footer {
  padding: 3rem 1.5rem;

  border-top: 1px solid var(--border);

  text-align: center;

  color: var(white);

  font-size: 0.8rem;

font-family: var(--font-display);

}

.footer p {
  margin: 0;
  /* color: var(--orange); */
}


.footer-note {
  margin: 0.5rem auto 0 !important;
  text-align: center;
  color: var(--orange);
}

/* ============================================================
   SOCIAL LINKS
============================================================ */

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;

  margin-bottom: 1.25rem;
}
.social-link svg {
  width: 32px;
  height: 32px;
  display: block;
}

.social-link {
  display: inline-flex;
  color: var(--wine);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: var(--ember);
  transform: translateY(-2px);
}

/* ============================================================
   GALLERY
============================================================ */

.gallery-grid {
  margin-top: 2.75rem;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;

  aspect-ratio: 1 / 1;
  overflow: hidden;

  border-radius: 1rem;
  border: 1px solid var(--border);

  cursor: pointer;

  transition:
    grid-column 0.35s ease,
    grid-row 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

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

.gallery-item.is-expanded {
  grid-column: span 2;
  grid-row: span 2;

  aspect-ratio: auto;
  z-index: 2;
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;

  padding: 0.75rem 1rem;

  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);

  color: var(--paper);

  font-size: 0.75rem;

  opacity: 0;
  transform: translateY(6px);

  transition: opacity 0.25s ease, transform 0.25s ease;

  pointer-events: none;
}

.gallery-item:hover .gallery-caption,
.gallery-item.is-expanded .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .gallery-item.is-expanded {
    grid-column: span 2;
    grid-row: span 2;
  }
}

/* ============================================================
   GALLERY — FILM STRIP FRAME
============================================================ */
/* 
.gallery-section {
  position: relative;

  padding-left: 3rem;
  padding-right: 3rem;
}

.gallery-section::before,
.gallery-section::after {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;

  width: 30px;

  background-color: #0b0a0c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='42' viewBox='0 0 30 42'%3E%3Crect width='30' height='42' fill='%230b0a0c'/%3E%3Crect x='7' y='11' width='16' height='20' rx='3' fill='%23f1ebe1' fill-opacity='0.85'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: 30px 42px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  z-index: 1;
}

.gallery-section::before {
  left: 0;
  border-right: 1px solid var(--border);
}

.gallery-section::after {
  right: 0;
  border-left: 1px solid var(--border);
}

@media (max-width: 480px) {
  .gallery-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .gallery-section::before,
  .gallery-section::after {
    width: 20px;

    background-size: 20px 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='30' viewBox='0 0 20 30'%3E%3Crect width='20' height='30' fill='%230b0a0c'/%3E%3Crect x='5' y='8' width='10' height='14' rx='2' fill='%23f1ebe1' fill-opacity='0.85'/%3E%3C/svg%3E");
  }
} */