/* ============================================================
   PAGES.CSS — Dhwani Entertainment
   Page-specific layouts and hero variants
   Covers: Homepage, Productions, Service, About, Journal, Contact
   ============================================================ */

/* ===========================================================
   HOMEPAGE
   =========================================================== */

/* ----------------------------------------------------------
   Home Hero — full viewport, bg zoom, staggered content
   ---------------------------------------------------------- */

.home-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* ----------------------------------------------------------
   Hero Slideshow — Multi-image Ken Burns
   ---------------------------------------------------------- */
.home-hero__slideshow {
  position: absolute;
  inset: 0;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  overflow: hidden;
}

.home-hero__slide.active {
  opacity: 1;
}

.home-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Slightly oversized for pan room */
  transform: scale(1.15);
  will-change: transform;
}

/* Ken Burns pan directions — applied via GSAP, but CSS fallback */
@keyframes kenBurnsLeft {
  0%   { transform: scale(1.15) translateX(3%); }
  100% { transform: scale(1.25) translateX(-3%); }
}

@keyframes kenBurnsRight {
  0%   { transform: scale(1.15) translateX(-3%); }
  100% { transform: scale(1.25) translateX(3%); }
}

@keyframes kenBurnsUp {
  0%   { transform: scale(1.15) translateY(3%); }
  100% { transform: scale(1.25) translateY(-3%); }
}

/* CSS fallback — if GSAP doesn't take over */
.home-hero__slide.active[data-pan="left"] img {
  animation: kenBurnsLeft 8s ease forwards;
}
.home-hero__slide.active[data-pan="right"] img {
  animation: kenBurnsRight 8s ease forwards;
}
.home-hero__slide.active[data-pan="up"] img {
  animation: kenBurnsUp 8s ease forwards;
}

/* ----------------------------------------------------------
   Animated Gradient Overlay — breathing effect
   ---------------------------------------------------------- */
.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-hero__overlay--animated {
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.15) 40%,
      rgba(10, 10, 10, 0.55) 100%
    );
  animation: overlayBreathe 6s ease-in-out infinite alternate;
}

@keyframes overlayBreathe {
  0% {
    background:
      linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.55) 0%,
        rgba(10, 10, 10, 0.15) 40%,
        rgba(10, 10, 10, 0.55) 100%
      );
  }
  100% {
    background:
      linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.50) 0%,
        rgba(10, 10, 10, 0.25) 45%,
        rgba(10, 10, 10, 0.60) 100%
      );
  }
}

/* ----------------------------------------------------------
   Film Grain Texture — subtle cinematic overlay
   ---------------------------------------------------------- */
.home-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  pointer-events: none;
  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='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding-inline: var(--space-xl);
  max-width: 860px;
  width: 100%;
}

/* Animation classes on child elements handled in animations.css */
.home-hero .hero__label {
  color: rgba(255, 255, 255, 0.75);
}

.home-hero .hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: var(--font-weight-regular);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.home-hero .hero__subtitle {
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-light);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--line-height-relaxed);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.home-hero .hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Scroll indicator */
.home-hero .hero__scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

.hero__scroll-text {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-widest);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
  writing-mode: horizontal-tb;
}

@media (max-width: 768px) {
  .home-hero .hero__title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
}

/* ----------------------------------------------------------
   Services Grid — homepage
   ---------------------------------------------------------- */

/* Top row: 3 cards. Bottom row: 2 cards centered via 6-col trick. */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

/* First 3 cards: each spans 2 of 6 columns */
.services-grid .service-card:nth-child(1) { grid-column: 1 / 3; }
.services-grid .service-card:nth-child(2) { grid-column: 3 / 5; }
.services-grid .service-card:nth-child(3) { grid-column: 5 / 7; }

/* Last 2 cards: offset by 1 column to center them */
.services-grid .service-card:nth-child(4) { grid-column: 2 / 4; }
.services-grid .service-card:nth-child(5) { grid-column: 4 / 6; }

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(3),
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: auto;
  }
  /* Center the 5th (odd) card */
  .services-grid .service-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}

@media (max-width: 580px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .services-grid .service-card:nth-child(5) {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
   Productions Featured — 2-col asymmetric
   ---------------------------------------------------------- */

.productions-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-lg);
}

/* First (main) card spans both rows on the left */
.productions-featured .production-card:first-child {
  grid-row: 1 / 3;
  min-height: 560px;
}

.productions-featured .production-card {
  min-height: 260px;
}

@media (max-width: 900px) {
  .productions-featured {
    grid-template-columns: 1fr 1fr;
  }

  .productions-featured .production-card:first-child {
    grid-row: auto;
    min-height: 300px;
  }
}

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

  .productions-featured .production-card {
    min-height: 300px;
  }
}

/* ----------------------------------------------------------
   Journal Teaser — 3-col on homepage
   ---------------------------------------------------------- */

.journal-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

@media (max-width: 900px) {
  .journal-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===========================================================
   PRODUCTIONS PAGE
   =========================================================== */

/* ----------------------------------------------------------
   Production Hero — 70vh, bottom-aligned content
   ---------------------------------------------------------- */

.production-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.production-hero__bg {
  position: absolute;
  inset: 0;
}

.production-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.production-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.90) 0%,
    rgba(10, 10, 10, 0.30) 55%,
    rgba(10, 10, 10, 0.15) 100%
  );
}

.production-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) var(--space-xl);
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.production-hero__artist {
  margin-bottom: var(--space-sm);
}

.production-hero__title {
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-white);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

.production-hero__meta {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.production-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.production-hero__meta-label {
  font-size: var(--font-size-xs);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.production-hero__meta-value {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .production-hero {
    height: 60vh;
    min-height: 440px;
  }

  .production-hero__title {
    font-size: var(--font-size-3xl);
  }
}

/* ----------------------------------------------------------
   Productions Grid — 3-col asymmetric, every 4th spans 2
   ---------------------------------------------------------- */

.productions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

/* Every 4th item spans 2 columns for visual rhythm */
.productions-grid .production-card:nth-child(4n) {
  grid-column: span 2;
}

.productions-grid .production-card {
  min-height: 320px;
}

.productions-grid .production-card:nth-child(4n) {
  min-height: 320px;
}

@media (max-width: 900px) {
  .productions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .productions-grid .production-card:nth-child(4n) {
    grid-column: span 1;
  }
}

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

  .productions-grid .production-card {
    min-height: 280px;
  }
}

/* ----------------------------------------------------------
   Production Stats — 4-col grid
   ---------------------------------------------------------- */

.production-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-block: var(--space-3xl);
}

@media (max-width: 768px) {
  .production-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

/* ----------------------------------------------------------
   Production Gallery — 3-col masonry-like
   ---------------------------------------------------------- */

.production-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.production-gallery__item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-grey-light);
}

.production-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-quart);
}

.production-gallery__item:hover img {
  transform: scale(1.05);
}

/* Tall variant spans 2 rows */
.production-gallery__item--tall {
  grid-row: span 2;
}

/* Wide variant spans 2 cols */
.production-gallery__item--wide {
  grid-column: span 2;
}

.production-gallery__item:not(.production-gallery__item--tall) {
  aspect-ratio: 4 / 3;
}

.production-gallery__item--tall {
  aspect-ratio: auto;
  min-height: 400px;
}

@media (max-width: 768px) {
  .production-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .production-gallery__item--wide {
    grid-column: span 1;
  }

  .production-gallery__item--tall {
    grid-row: span 1;
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .production-gallery {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   SERVICE PAGES
   =========================================================== */

/* ----------------------------------------------------------
   Capabilities Grid — 3-col
   ---------------------------------------------------------- */

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 900px) {
  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ----------------------------------------------------------
   Service Productions — 3-col
   ---------------------------------------------------------- */

.service-productions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-productions .production-card {
  min-height: 300px;
}

@media (max-width: 900px) {
  .service-productions {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===========================================================
   ABOUT PAGE
   =========================================================== */

/* ----------------------------------------------------------
   About Story — 2-col with sticky image
   ---------------------------------------------------------- */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

.about-story__image-col {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-xl));
}

.about-story__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-grey-light);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__content-col {
  padding-top: var(--space-md);
}

.about-story__content-col p {
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-body);
  margin-bottom: var(--space-lg);
}

@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-story__image-col {
    position: relative;
    top: auto;
  }

  .about-story__image {
    aspect-ratio: 16 / 9;
  }
}

/* ----------------------------------------------------------
   Team Grid — 4-col
   ---------------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.team-card {
  text-align: center;
}

.team-card__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-grey-light);
  margin-bottom: var(--space-lg);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease-out-quart);
}

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

.team-card__name {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.team-card__role {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.team-card__bio {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   Client Logos Grid — 6-col greyscale
   ---------------------------------------------------------- */

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-xl);
  align-items: center;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.40;
  transition:
    filter  var(--transition-base),
    opacity var(--transition-base);
}

.client-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.client-logo-item img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .client-logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .client-logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 400px) {
  .client-logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================================================
   JOURNAL PAGES
   =========================================================== */

/* ----------------------------------------------------------
   Journal Featured — 2-col, first is tall
   ---------------------------------------------------------- */

.journal-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.journal-featured .journal-card:first-child .journal-card__image-wrap {
  aspect-ratio: 4 / 3;
}

.journal-featured .journal-card:first-child .journal-card__title {
  font-size: var(--font-size-xl);
}

@media (max-width: 768px) {
  .journal-featured {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   Journal Featured — content column
   ---------------------------------------------------------- */

.journal-featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
}

.journal-featured__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-primary);
  line-height: var(--line-height-heading);
  margin-bottom: 0;
}

.journal-featured__excerpt {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.journal-featured__read-link {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-top: var(--space-sm);
}

.journal-featured__read-link:hover {
  color: var(--color-accent-hover);
}

@media (max-width: 768px) {
  .journal-featured__title {
    font-size: var(--font-size-xl);
  }
}

/* ----------------------------------------------------------
   Journal Grid — 2-col
   ---------------------------------------------------------- */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl) var(--space-xl);
}

@media (max-width: 768px) {
  .journal-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ----------------------------------------------------------
   Blog Post Content — narrow, readable
   ---------------------------------------------------------- */

.post-content {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  font-size: var(--font-size-md);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-body);
}

.post-content h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-light);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-primary);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-heading);
}

.post-content h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-heading);
}

.post-content p {
  margin-bottom: var(--space-lg);
}

.post-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.post-content a:hover {
  color: var(--color-accent-hover);
}

.post-content ul,
.post-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content li {
  margin-bottom: var(--space-sm);
}

/* Styled blockquote */
.post-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-xl);
  margin-block: var(--space-2xl);
}

.post-content blockquote p {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-light);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
}

.post-content blockquote cite {
  font-size: var(--font-size-sm);
  font-style: normal;
  color: var(--color-text-muted);
  letter-spacing: var(--letter-spacing-wide);
}

/* Inline images */
.post-content figure {
  margin-block: var(--space-2xl);
}

.post-content figure img {
  width: 100%;
  border-radius: var(--radius-md);
}

.post-content figcaption {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--space-sm);
  font-style: italic;
}

/* Horizontal rule */
.post-content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: var(--space-2xl);
}

/* ----------------------------------------------------------
   Post Meta
   ---------------------------------------------------------- */

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding-block: var(--space-lg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-3xl);
}

.post-meta__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.post-meta__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  object-fit: cover;
  background-color: var(--color-grey-mid);
}

.post-meta__author-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.post-meta__author-role {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.post-meta__date,
.post-meta__read-time {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  letter-spacing: var(--letter-spacing-wide);
}

.post-meta__tags {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-left: auto;
}

/* ----------------------------------------------------------
   Post Production Link
   ---------------------------------------------------------- */

.post-content__production-link {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  padding: var(--space-lg);
  border-left: 3px solid var(--color-accent);
  background-color: var(--color-accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ----------------------------------------------------------
   Post Share
   ---------------------------------------------------------- */

.post-share {
  padding-block: var(--space-xl);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-3xl);
}

.post-share__inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.post-share__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.post-share__links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.post-share__link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-primary);
  transition: color var(--transition-fast);
}

.post-share__link:hover {
  color: var(--color-accent);
}

/* ----------------------------------------------------------
   Post Related Articles — 3-col
   ---------------------------------------------------------- */

.post-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 900px) {
  .post-related {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===========================================================
   CONTACT PAGE
   =========================================================== */

/* ----------------------------------------------------------
   Contact Pathways — 3-col inquiry type cards
   ---------------------------------------------------------- */

.contact-pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-4xl);
}

.contact-pathway {
  padding: var(--space-2xl);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  display: block;
  transition:
    border-color var(--transition-base),
    box-shadow   var(--transition-base),
    transform    var(--transition-base);
}

.contact-pathway:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 32px rgba(200, 169, 126, 0.15);
  transform: translateY(-4px);
}

.contact-pathway__icon {
  width: 44px;
  height: 44px;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.contact-pathway__label {
  margin-bottom: var(--space-xs);
}

.contact-pathway__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.contact-pathway__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 900px) {
  .contact-pathways {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   Contact Location — 2-col (form + map)
   ---------------------------------------------------------- */

.contact-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-location__info {
  padding-top: var(--space-md);
}

.contact-location__detail {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  align-items: flex-start;
}

.contact-location__detail-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-location__detail-title {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.contact-location__detail-value {
  font-size: var(--font-size-base);
  color: var(--color-text-body);
  line-height: var(--line-height-relaxed);
}

.contact-location__detail-value a {
  color: inherit;
  text-decoration: none;
}

.contact-location__detail-value a:hover {
  color: var(--color-accent);
}

.contact-location__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: var(--color-grey-light);
}

.contact-location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 900px) {
  .contact-location {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ===========================================================
   SHARED LAYOUT HELPERS
   =========================================================== */

/* Two-column: equal */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

/* Two-column: content heavy left */
.grid-2--content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-3xl);
}

/* Three-column: equal */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* Four-column */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .grid-2,
  .grid-2--content,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   EVENT TYPE PAGES (Concerts, Festivals, Corporate, etc.)
   =========================================================== */

/* Challenge / What's Different section — alternating layout */
.event-challenge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.event-challenge--reverse {
  direction: rtl;
}

.event-challenge--reverse > * {
  direction: ltr;
}

.event-challenge__text h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
}

.event-challenge__text p {
  color: var(--color-text-body);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.event-challenge__image {
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
}

.event-challenge__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .event-challenge,
  .event-challenge--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* Services used strip */
.services-used {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.services-used__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.services-used__item:hover {
  color: var(--color-brand);
}

.services-used__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-lg);
  transition: background var(--transition-fast);
}

.services-used__item:hover .services-used__icon {
  background: var(--color-brand-light);
}

.services-used__label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wider);
  text-transform: uppercase;
}
