/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #050505;
  --color-black-soft: #0E0E0E;
  --color-white: #F5F2EA;
  --color-gray-light: #B8B3A7;
  --color-gray-dark: #2A2A2A;
  --color-gold: #B88746;
  --color-gold-hover: #D0A15F;
  --color-copper: #7A4A28;
  
  --font-title: 'Cinzel', Georgia, serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  
  /* Halos bronze très diffus intégrés au fond (Cohérence avec About) */
  background-image: 
    radial-gradient(circle at 10% 25%, rgba(184, 135, 70, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 90% 75%, rgba(184, 135, 70, 0.04) 0%, transparent 45%);
  background-attachment: fixed;
  opacity: 0;
  animation: fadeInBody 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInBody {
  to { opacity: 1; }
}

/* Subtle Film Grain Noise (Cohérence globale) */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  content: "";
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Silhouette fantôme en arrière-plan (Cohérence About) */
.background-silhouette {
  position: fixed;
  top: 15%;
  right: -5%;
  width: 50vw;
  height: 70vh;
  background-image: url("../Site/home/trone_25_GOODretouche_lumiere_net_sans_flou_(3)_web.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  opacity: 0.012;
  filter: grayscale(100%) contrast(140%) brightness(30%);
  pointer-events: none;
  z-index: -1;
}

/* Header Centré */
.main-header {
  padding-top: 40px;
  padding-bottom: 20px;
  z-index: 100;
  position: relative;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.brand-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-white);
  cursor: default;
  position: relative;
}

/* Shiny Gold Text Effect */
.animated-shiny-text {
  background: linear-gradient(to right, #ffffff 20%, var(--color-gold) 40%, var(--color-gold-hover) 60%, #ffffff 80%);
  background-size: 200% auto;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 6s linear infinite;
  text-shadow: 0 0 40px rgba(184, 135, 70, 0.1);
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-light);
  transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold);
}

/* Page Layout */
.media-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}

.media-container {
  width: 100%;
  max-width: 1100px;
  padding: 0 40px;
}

/* Hero Section */
.media-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 480px;
  overflow: hidden;
  border-radius: 4px;
  background-color: #000000;
  opacity: 0;
  animation: wrapper-fade-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 98%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 98%);
}

@keyframes wrapper-fade-in {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.hero-image {
  width: 550px;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent 0%, #000000 15%, #000000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000000 15%, #000000 85%, transparent 100%);
  transform-origin: center center;
  will-change: transform;
  animation: cinematic-zoom 24s ease-in-out infinite alternate;
}

@keyframes cinematic-zoom {
  0% { transform: scale(1.00); }
  100% { transform: scale(1.08); }
}

.hero-overlay-radial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.6) 80%, #000000 100%);
  pointer-events: none;
}

.hero-overlay-linear {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, #000000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 25px;
  text-align: center;
  z-index: 10;
}

/* Common Section Styles */
.media-section {
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(184, 135, 70, 0.08);
}

.media-section:first-of-type {
  border-top: none;
  padding-top: 20px;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-gray-light);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.section-main-title {
  font-family: var(--font-title);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(216, 212, 201, 0.55);
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* 1. Clips Section Grid */
.clips-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr; /* Subtle priority to first card */
  gap: 32px;
  margin-top: 40px;
}

.clip-card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.clip-card:hover {
  transform: translateY(-4px);
}

.clip-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #000;
  border-radius: 2px;
}

.clip-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.clip-card:hover .clip-image {
  transform: scale(1.05);
}

/* Specific scale adjustments for Ton Bouclier cover art */
.clip-image-bouclier {
  transform: scale(1.40);
  object-position: center 40%;
}

.clip-card:hover .clip-image-bouclier {
  transform: scale(1.46);
}

/* Specific position adjustments for Parano cover art */
.clip-image-parano {
  object-position: center 10%;
}

.clip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.clip-card:hover .clip-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 20px;
  color: var(--color-white);
  border: 1.5px solid var(--color-white);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.clip-card:hover .play-icon {
  color: var(--color-gold);
  border-color: var(--color-gold);
  transform: scale(1.05);
}

.clip-info {
  padding: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.clip-tag {
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(184, 135, 70, 0.8);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-weight: 500;
}

.clip-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.clip-link-btn {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 242, 234, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 0;
  width: fit-content;
  margin-top: auto;
  transition: all 0.3s ease;
  font-weight: 500;
}

.clip-link-btn:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
  padding-left: 2px;
}

/* 2. Editorial Blocks (BTS & Events) */
.editorial-blocks-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 40px;
}

.editorial-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.editorial-block.inverted {
  flex-direction: row-reverse;
}

.block-visual {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-image-frame {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Inset vignette overlay for a cinematic, premium look */
.main-image-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 2;
  transition: box-shadow 0.4s ease;
}

.editorial-block:hover .main-image-frame::after {
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.45);
}

.block-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.editorial-block:hover .block-main-img {
  transform: scale(1.02);
}

/* Ajustement fin pour l'image principale de l'événement Balenciaga */
.event-image--balenciaga-focus {
  object-position: center 22%;
  filter: brightness(0.90) contrast(1.04);
}

/* Ajustements pour les miniatures Balenciaga */
.event-thumb--balenciaga-1 {
  object-position: center 10%;
}
.event-thumb--balenciaga-2 {
  object-position: center 15%;
}
.event-thumb--balenciaga-3 {
  object-position: center 10%;
}

/* Ajustements pour le bloc Africa Fashion Up */
.event-image--africa-fashion-up-focus {
  object-position: center 8%;
  filter: brightness(0.90) contrast(1.04);
}

.event-thumb--africa-fashion-up-1 {
  object-position: center top;
}

.event-thumb--africa-fashion-up-2 {
  object-position: center top;
}

.event-thumb--africa-fashion-up-3 {
  object-position: center top;
}

/* Ajustements pour le bloc Foire de Paris */
.event-image--foire-paris-focus {
  filter: brightness(0.92) contrast(1.03);
}

.event-thumb--foire-paris-1 {
  object-position: center 10%;
}

.event-thumb--foire-paris-2 {
  object-position: center bottom;
}

.event-thumb--foire-paris-3 {
  object-position: center 10%;
}

.thumbs-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}

.thumb-frame {
  flex: 1;
  aspect-ratio: 3/2;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.block-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
}

.thumb-frame:hover .block-thumb-img {
  transform: scale(1.05);
  opacity: 1;
}

.block-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block-tag {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 12px;
}

.block-title {
  font-family: var(--font-title);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.block-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-gray-light);
  opacity: 0.85;
}

/* --- Behind the Scenes (BTS) Specific Adjustments --- */

/* Reduce vertical space above the Behind the Scenes section */
.backstages-section {
  padding-top: clamp(45px, 5.5vw, 65px);
}

/* 1. Spacing optimization to reduce empty areas on desktop */
@media (min-width: 993px) {
  .bts-block {
    gap: 60px; /* Slight breathing room increase */
  }
  
  .bts-block .block-visual {
    flex: 0 0 58%; /* Increase image presence to 58%, reducing text column width and wrapping text more naturally */
  }
  
  .bts-block .block-content {
    padding-bottom: 15px; /* Visual shift up to center content better */
  }
}

/* 2. Integration of bright/outdoor Parano BTS images */
.bts-block.inverted .block-main-img,
.bts-block.inverted .block-thumb-img {
  filter: brightness(0.80) contrast(1.06) saturate(0.82) sepia(0.08);
}

/* Hover behaviors to transition back to natural state */
.bts-block.inverted:hover .block-main-img {
  filter: brightness(0.90) contrast(1.03) saturate(0.92) sepia(0.03);
}

.bts-block.inverted .thumb-frame:hover .block-thumb-img {
  filter: brightness(0.96) contrast(1.02) saturate(0.98) sepia(0);
}


/* 3. Portraits Official (Lookbook) */
.portraits-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-top: 40px;
  width: 100%;
}

.portrait-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.portrait-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.02);
  /* Default aspect ratio for vertical portraits */
  aspect-ratio: 2 / 3;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.90) contrast(1.03); /* Muted premium look at rest */
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.portrait-card:hover .portrait-img {
  transform: scale(1.03); /* Subtle premium hover zoom */
  filter: brightness(1) contrast(1); /* Full brightness on hover */
}

.portrait-caption {
  display: block;
  margin-top: 10px;
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

/* Grid columns for desktop lookbook */
.card-1 {
  grid-column: span 4;
}

.card-2 {
  grid-column: span 4;
}

.card-3 {
  grid-column: span 4;
}

.card-4 {
  grid-column: span 8;
}

.card-4 .portrait-image-wrapper {
  aspect-ratio: auto;
  height: 100%;
}

.card-5 {
  grid-column: span 4;
}

/* Specific crop adjustments for portraits */
.portrait-img--debs7 {
  object-position: center 10%; /* Keep the beanie and face fully visible */
}

.portrait-img--debs4 {
  object-position: center 10%; /* Keep the head/sunglasses fully visible */
}

.portrait-img--debs9 {
  object-position: center 15%; /* Keep the top of the fedora hat visible */
}

.portrait-img--debs8 {
  object-position: center 30%; /* Balanced headroom for the sitting pose */
}

/* 4. Covers / Discographie Grid */
.covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.cover-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover-image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  background-color: #000;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.90) contrast(1.03); /* Subtle darkening filter at rest */
  transition: transform 0.4s ease, filter 0.6s ease;
}

.cover-img--hello {
  filter: brightness(0.86) contrast(1.04); /* Extra darkening for Hello at rest */
}

.cover-img--etincelles {
  filter: brightness(0.84) contrast(1.04); /* Extra darkening for Étincelles at rest */
}

.cover-card:hover .cover-image-wrapper {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(184, 135, 70, 0.12);
}

.cover-card:hover .cover-img {
  transform: scale(1.02);
  filter: brightness(1) contrast(1); /* Full brightness on hover */
}

.cover-title {
  margin-top: 16px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-light);
  letter-spacing: 0.04em;
  text-align: center;
  transition: color 0.3s ease;
}

.cover-card:hover .cover-title {
  color: var(--color-gold);
}

/* 5. Échos & Parutions (Revue de presse) */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.press-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-image-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background-color: rgba(14, 14, 14, 0.5);
  transition: all 0.4s ease;
}

.press-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(110%);
  opacity: 0.45;
  transition: all 0.4s ease;
}

.press-card:hover .press-image-frame {
  border-color: rgba(184, 135, 70, 0.2);
}

.press-card:hover .press-img {
  filter: grayscale(0%) contrast(100%);
  opacity: 0.85;
}

.press-origin {
  margin-top: 14px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-gray-light);
  letter-spacing: 0.08em;
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.press-card:hover .press-origin {
  opacity: 1;
  color: var(--color-gold);
}

/* CTA de fin de page (Identique à About) */
.media-cta-container {
  margin-top: 80px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.media-cta-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  text-decoration: none;
  border: 1px solid var(--color-gold);
  padding: 12px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: transparent;
}

.media-cta-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-black);
  box-shadow: 0 0 15px rgba(184, 135, 70, 0.25);
  transform: translateY(-1px);
}

/* Footer (Identique à About) */
.main-footer {
  width: 100%;
  background-color: var(--color-black);
  border-top: 1px solid rgba(184, 135, 70, 0.12);
  padding: 60px 20px 40px 20px;
  margin-top: 60px;
}

.footer-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-social-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.social-link-btn {
  color: var(--color-white);
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-link-btn svg {
  width: 24px;
  height: 24px;
}

.social-link-btn:hover {
  color: var(--color-gold);
  opacity: 1;
  transform: translateY(-1.5px);
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-email {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-gray-light);
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

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

.footer-copyright {
  font-size: 11px;
  color: var(--color-gray-light);
  opacity: 0.35;
  letter-spacing: 0.02em;
}

/* Featured Video Section */
.feature-video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.video-player-container {
  width: 100%;
  max-width: 860px;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(184, 135, 70, 0.05);
  position: relative;
}

.video-ratio-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-ratio-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Tablet & Mobile Media Queries */
@media (max-width: 992px) {
  .media-container {
    padding: 0 24px;
  }

  .clips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .covers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .editorial-block {
    flex-direction: column !important;
    gap: 24px;
  }

  .block-visual {
    width: 100%;
  }

  .card-2, .card-3, .card-4, .card-5 {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  body {
    background-image: 
      radial-gradient(circle at 50% 15%, rgba(184, 135, 70, 0.04) 0%, transparent 50%);
  }

  .background-silhouette {
    display: none;
  }

  .main-header {
    padding-top: 24px;
  }

  .main-nav ul {
    gap: 16px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero-image-wrapper {
    height: 300px;
  }

  .hero-image {
    width: 100%;
    object-position: center 30%;
    margin: 0;
    mask-image: none;
    -webkit-mask-image: none;
  }

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

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

  .press-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .editorial-block {
    gap: 20px;
  }

  .main-image-frame {
    height: 240px;
  }

  .thumbs-row {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 135, 70, 0.3) transparent;
  }

  .thumb-frame {
    flex: 0 0 120px;
    scroll-snap-align: start;
  }

  .portraits-editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 32px;
    overflow: visible;
  }

  .portrait-card {
    grid-column: 1 / -1 !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto !important;
  }

  .portrait-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    aspect-ratio: 2 / 3;
  }

  .card-4 .portrait-image-wrapper {
    aspect-ratio: 3 / 2;
  }

  .portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .portrait-card:hover .portrait-img {
    transform: none;
  }

  .media-section {
    padding: 50px 0 25px 0;
  }

  .media-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
  }
}
