/* ── BLEUSKM STUDIOS · STYLES.CSS ── */

/* ── RESET & BASE ── */
a, a:link, a:visited, a:active, a:hover {
  text-decoration: none !important;
}

@import url('https://fonts.googleapis.com/css2?family=Kalnia:wght@400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;600;800;900&family=Red+Hat+Display:wght@300;400;500;600;700&display=swap');

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

html, body {
  overflow-x: hidden;
  height: 100%;
}

body {
  padding-top: 70px;
  font-family: 'Red Hat Display', sans-serif;
  background: linear-gradient(to right, #950606, #B24C1E, #DAAF37);
  background-attachment: fixed;
  color: #EADFCF;
  margin: 0;
  min-height: 100vh;
}

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

/* ── NAVBAR ── */
.navbar {
  background-color: #0C0C0C !important;
  padding: 12px 30px;
}

.navbar .nav-link {
  color: #EADFCF !important;
}

.navbar .nav-link:hover {
  color: #DAAF37 !important;
}

.brand-logo img {
  height: 32px;
  width: auto;
}

/* ── HERO ── */
.hero-wrapper {
  padding: 40px 60px 0 60px;
}

.hero-slide {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

.hero-content {
  position: absolute;
  bottom: 100px;
  left: 60px;
  max-width: 600px;
}

.hero-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: #DAAF37;
}

.hero-sub { color: #EADFCF; }

/* ── PRODUCTIONS GRID ── */
.coming-soon-section { padding: 70px 0; }

.rail-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 35px;
  color: #DAAF37;
}

.project-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px 10px;
}

.productions-page h1,
.productions-page .all-productions-title {
  padding-left: 40px;
}

.project-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #EADFCF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thumb-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.project-card:hover .thumb-img {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 35px rgba(218,175,55,0.6);
}

.project-info {
  position: relative;
  z-index: 2;
}

.all-productions-wrapper {
  max-width: 1600px;
  margin: 30px auto 0;
  padding: 0 40px;
}

.untitled-bg {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  background: #000;
  height: 320px;
}

/* ── ABOUT ── */
.about-section {
  padding: 60px 40px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.about-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.7rem;
  color: #DAAF37;
}

.about-divider {
  width: 80px;
  height: 3px;
  background-color: #DAAF37;
  margin: 20px 0 40px 0;
}

.about-manifesto { font-size: 1.5rem; font-weight: 600; margin-bottom: 20px; }
.about-body { margin-bottom: 18px; line-height: 1.6; font-size: 1.05rem; }
.about-closer { margin-top: 25px; font-size: 1.2rem; font-weight: 600; }

/* ── SERVICES ── */
.services-section { padding: 20px 60px 80px; }

.services-section .rail-title {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

.services-section .rail-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #DAAF37;
  margin: 12px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1500px;
  margin: 40px auto;
}

.service-card {
  background: #0C0C0C;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-card img { width: 100%; height: 340px; object-fit: cover; display: block; }

.service-content { padding: 20px; }

.service-content h3 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  color: #DAAF37;
  margin-bottom: 10px;
}

.service-content p { font-size: 0.9rem; }

/* ── HORIZONTAL SCROLL ── */
.coming-wrapper { position: relative; width: 100%; }

.horizontal-scroll {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  overflow-x: auto;
  overflow-y: visible;
  padding-left: 43px;
  padding-right: 80px;
  scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar { display: none; }

.vertical-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 10px;
  color: #DAAF37;
  flex: 0 0 auto;
}

.scroll-card {
  flex: 0 0 420px;
  text-decoration: none;
  color: inherit;
}

.scroll-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.scroll-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.scroll-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  color: #DAAF37;
}

.scroll-format {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: #EADFCF;
  opacity: 0.6;
  text-align: right;
  margin-left: auto;
}

/* ── SCROLL BUTTONS ── */
.scroll-btn {
  position: absolute;
  bottom: 6px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 20;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.scroll-btn:hover { transform: scale(1.15); opacity: 1; }
.scroll-left { left: 60px; color: #DAAF37; }
.scroll-right { right: 40px; color: #950606; }

/* ── FORMS ── */
.contact-wrapper { padding: 20px; }

.bleuskm-form {
  font-family: 'Red Hat Display', sans-serif;
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(212,161,68,0.35);
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  color: #f2f2f2;
}

.bleuskm-form h2 {
  margin: 0 0 8px;
  font-family: 'Kalnia', sans-serif;
  letter-spacing: 1px;
  color: #DAAF37;
  text-transform: uppercase;
  font-size: 1.3rem;
}

.bleuskm-form .subtext {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.bleuskm-form label { display: block; margin-top: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.85); }

.bleuskm-form input,
.bleuskm-form select,
.bleuskm-form textarea {
  width: 100%;
  margin-top: 5px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.bleuskm-form input:-webkit-autofill,
.bleuskm-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

.bleuskm-form input::placeholder,
.bleuskm-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.bleuskm-form select option { color: #000; background-color: #fff; }

.bleuskm-form input:focus,
.bleuskm-form select:focus,
.bleuskm-form textarea:focus {
  outline: none;
  border-color: rgba(218,175,55,0.9);
  box-shadow: 0 0 0 3px rgba(218,175,55,0.22);
}

.bleuskm-form .checks {
  margin-top: 16px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.bleuskm-form .check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #DAAF37;
  cursor: pointer;
}

.bleuskm-form .check input[type="checkbox"] { margin: 0; }
.bleuskm-form .helper-text { display: block; margin-top: 6px; font-size: 0.75rem; color: #DAAF37; }

.bleuskm-form button {
  width: 100%;
  margin-top: 18px;
  padding: 12px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: #DAAF37;
  color: #0b0b0b;
}

.bleuskm-form button:hover { background-color: #b9892e; }
.bleuskm-form .fineprint { margin-top: 16px; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ── PRODUCTIONS PAGE CARD INFO ── */
.project-rail .project-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,0.25);
  text-transform: uppercase;
}

.project-rail .project-category { font-size: 0.8rem; letter-spacing: 1px; color: #EADFCF; }
.project-rail .project-name { font-family: 'League Spartan', sans-serif; font-weight: 900; color: #DAAF37; font-size: 0.95rem; letter-spacing: 1px; }
.project-rail .project-year { font-size: 0.8rem; color: #EADFCF; }

/* ── UNTITLED CARDS ── */
.coming-soon-section .untitled-card .project-info,
.project-rail .untitled-card .project-info {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none;
  margin: 0;
  z-index: 2;
}

.project-rail .untitled-card { position: relative; }
.project-rail .untitled-card .untitled-bg { border-radius: 20px; }
.coming-soon-section .untitled-card .project-name { color: #DAAF37; text-align: center; }
.project-card.untitled-card:hover .thumb-img { transform: none; box-shadow: none; }

/* ── ECHOS ── */
.echos-container { max-width: 1400px; width: 88%; margin: 40px auto 80px; }
.echo-item { border-bottom: 1px solid rgba(255,255,255,0.15); padding: 28px 0; }
.echo-header { background: none; border: none; width: 100%; text-align: left; cursor: pointer; }
.echo-category { font-size: 11px; letter-spacing: 2px; color: #fff; margin-bottom: 6px; display: block; opacity: 0.7; }
.echo-header h3 { font-family: 'League Spartan', sans-serif; font-weight: 800; font-size: 25px; color: #DAAF37; margin-bottom: 6px; }
.echo-date { font-size: 13px; color: #EADFCF; opacity: 0.6; }
.echo-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; margin-top: 10px; }
.echo-content p { margin: 15px 0; font-size: 15px; max-width: 800px; }
.echo-button { display: inline-block; padding: 8px 16px; background: #950606; color: white; text-decoration: none; font-size: 13px; border-radius: 4px; }

.echos-filter {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 40px auto 10px;
  max-width: 1400px;
  width: 88%;
}

.filter-btn { background: none; border: none; color: #EADFCF; font-weight: 500; letter-spacing: 1px; cursor: pointer; font-size: 15px; position: relative; }
.filter-btn.active, .filter-btn:hover { color: #DAAF37; }
.filter-btn.active::after { content: ""; position: absolute; bottom: -6px; left: 0; width: 100%; height: 2px; background: #DAAF37; }

/* ── CAROUSEL ARROWS ── */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 2.5rem;
  height: 2.5rem;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #DAAF37;
}

.carousel-control-prev-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M11 1 3 8l8 7' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.carousel-control-next-icon::after {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M5 1l8 7-8 7' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

/* ── FOOTER ── */
.site-footer {
  margin-top: 40px;
  padding: 20px 40px;
  font-size: 0.9rem;
  color: #DAAF37;
  text-align: left;
}

/* ── FILM / ARTICLE PAGES ── */
.film-page {
  background: #000;
  color: #f5f5f5;
  max-width: 1100px;
  margin: 40px auto 100px;
  padding: 0 40px;
}

.film-page h1 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.film-hero-img img { width: 100%; height: 85vh; object-fit: cover; margin-bottom: 80px; }
.film-meta { opacity: 0.7; margin-bottom: 40px; }
.film-block { margin-bottom: 60px; }
.film-logline { font-size: 1.2rem; line-height: 1.7; }
.film-block h3 { margin-bottom: 20px; letter-spacing: 1px; }
.film-block ul { list-style: none; padding: 0; display: flex; gap: 60px; flex-wrap: wrap; }
.film-block ul li { margin-bottom: 0; opacity: 0.8; font-size: 0.95rem; letter-spacing: 1px; }

.back-link {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #DAAF37;
  text-decoration: none;
}

.back-link:hover { opacity: 0.7; }

.article-wrapper { max-width: 820px; margin: 140px auto 100px; padding: 0 20px; }
.article-category { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #DAAF37; font-weight: 600; }
.article-content h1 { font-family: 'Kalnia', serif; font-size: 2.8rem; font-weight: 600; color: #fff; margin: 18px 0 25px; line-height: 1.15; }
.article-date { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.article-date::after { content: ""; display: block; width: 60px; height: 2px; background: #DAAF37; margin-top: 25px; }
.article-body { font-size: 17px; line-height: 1.9; color: #EADFCF; }
.article-body p:first-of-type { font-size: 20px; line-height: 1.8; font-weight: 500; }
.article-body p { margin-bottom: 22px; }
.article-body p strong { font-weight: 700; color: #fff; }

/* ── PRODUCT & SHOP ── */
.product-layout {
  max-width: 1600px;
  margin: 140px auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 120px;
  align-items: start;
}

.product-left { grid-column: 1; background: none; display: block; padding: 0; }
.product-right { grid-column: 2; width: 100%; }
.product-left, .product-right { min-width: 0; }

.product-left img { width: 100%; max-height: 650px; object-fit: contain; }

.product-right h1 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.price { font-size: 1.6rem; color: #DAAF37; margin-bottom: 30px; }
.product-description { font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; max-width: 520px; }
.add-to-cart-btn { background: #DAAF37; border: none; padding: 14px 28px; font-weight: 800; cursor: pointer; border-radius: 6px; }

.image-gallery { position: relative; width: 100%; border-radius: 16px; overflow: visible; }
.gallery-image { display: block; width: 100%; max-height: 850px; object-fit: contain; }
.gallery-dots { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; background: #999; opacity: 0.5; cursor: pointer; }
.dot.active { opacity: 1; background: #DAAF37; }

.cart-wrapper { max-width: 1000px; margin: 80px auto; padding: 0 40px; }
.cart-item { display: flex; justify-content: space-between; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.cart-summary { margin-top: 30px; text-align: right; }

.floating-cart {
  position: fixed;
  top: 85px;
  right: 60px;
  background: #DAAF37;
  color: #000;
  padding: 10px 18px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
  z-index: 1000;
  transition: transform 0.2s ease;
}

.floating-cart:hover { transform: scale(1.05); }

.cart-toast {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #DAAF37;
  color: #000;
  padding: 12px 18px;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ── VISUALS PAGE ── */
.visuals-page { background-color: #000; }
.visuals-page .site-footer { background-color: #000; }

.visuals-coming {
  position: relative;
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.visuals-overlay-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  pointer-events: none;
}

.visuals-overlay-logo img { width: 70vw; max-width: 900px; }
.visuals-coming-content { position: relative; z-index: 2; }
.visuals-coming-content h1 { font-family: 'League Spartan', sans-serif; font-weight: 900; font-size: 3rem; color: #DAAF37; letter-spacing: 2px; }
.coming-label { margin-top: 20px; font-size: 0.9rem; letter-spacing: 4px; color: #EADFCF; opacity: 0.7; }
.coming-sub { margin-top: 18px; font-size: 0.95rem; color: #EADFCF; opacity: 0.6; }

/* ── LEGAL PAGES ── */
.legal-wrapper { max-width: 820px; margin: 120px auto 100px; padding: 0 30px; }

/* ── IMAGE CREDITS ── */
.image-credit { font-size: 0.7rem; color: #DAAF37; padding: 12px 20px 0 20px; }
.image-credit a { color: #DAAF37; text-decoration: underline; font-weight: 600; }
.coming-wrapper a, .coming-wrapper a:visited { color: #DAAF37 !important; text-decoration: none; font-family: 'League Spartan', sans-serif; font-weight: 800; letter-spacing: 1px; }


/* ═══════════════════════════════════════
   TABLET  (769px – 1024px)
═══════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .project-rail { grid-template-columns: repeat(2, 1fr); gap: 25px; padding: 0 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .product-layout { padding: 0 40px !important; gap: 60px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 30px !important; }
  .hero-content { left: 40px; }
  #channelsBtn { padding: 12px 9px !important; }
  #channelsPopup > div { width: 88% !important; padding: 32px 28px !important; }
}

/* ═══════════════════════════════════════
   MOBILE  (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {

  body { padding-top: 60px; }

  /* ── NAV ── */
  .navbar { padding: 10px 16px; }
  .brand-logo img { height: 26px; }
  .navbar-collapse {
    background: #0C0C0C;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(218,175,55,0.1);
    margin: 0 -16px;
  }
  .navbar-collapse .nav-link {
    padding: 11px 16px !important;
    font-size: 0.9rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .navbar-collapse .nav-link:last-child { border-bottom: none; }

  /* ── CONTACT SIDE TAB — BOTH VERSIONS ── */
  #channelsBtn {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    padding: 14px 9px !important;
    width: 30px !important;
    border-radius: 4px 0 0 4px !important;
    right: 0 !important;
    z-index: 1100 !important;
  }
  #channelsBtn > span {
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    font-size: 0.48rem !important;
    letter-spacing: 2px !important;
    display: block !important;
    white-space: nowrap !important;
  }

  /* Popup modal */
  #channelsPopup {
    padding: 0 16px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  #channelsPopup > div {
    width: 100% !important;
    max-width: 340px !important;
    padding: 28px 20px !important;
    margin: 0 auto !important;
  }
  #channelsPopup h2 {
    font-size: 1rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 16px !important;
  }
  #channelsPopup > div > div { gap: 20px !important; }

  /* ── CART POPUP ── */
  #cartPopupBtn {
    right: 42px !important;
    top: 68px !important;
    padding: 6px 12px !important;
  }
  #cartPopup {
    right: 8px !important;
    left: 8px !important;
    width: auto !important;
    top: 112px !important;
  }

  /* ── HERO ── */
  .hero-wrapper { padding: 10px 10px 0; }
  .hero-img { height: 42vh; object-position: center; }
  .hero-content { left: 14px; right: 50px; bottom: 20px; max-width: 100%; }
  .hero-title { font-size: 1.4rem; line-height: 1.15; }
  .hero-sub { font-size: 0.8rem; margin-top: 6px; }
  .hero-casting-btn {
    padding: 10px 18px !important;
    font-size: 0.62rem !important;
    display: inline-block !important;
    margin-top: 10px !important;
  }

  /* ── PRODUCTIONS GRID ── */
  .project-rail {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    padding: 0 14px !important;
  }
  .thumb-img { height: 155px !important; border-radius: 8px !important; }
  .project-info {
    padding: 8px 0 4px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    border-bottom: none !important;
  }
  .project-name { font-size: 0.75rem !important; line-height: 1.2 !important; }
  .project-category, .project-year { font-size: 0.62rem !important; opacity: 0.7; }
  .all-productions-wrapper { padding: 0 14px !important; }
  .productions-page h1,
  .productions-page .all-productions-title { padding-left: 14px !important; font-size: 1.6rem !important; }

  /* ── HORIZONTAL SCROLL ── */
  .scroll-card { flex: 0 0 210px !important; }
  .horizontal-scroll { gap: 14px !important; padding-left: 14px !important; padding-right: 14px !important; }
  .scroll-title { font-size: 0.78rem !important; }
  .scroll-format { font-size: 0.62rem !important; }

  /* ── RAIL TITLES ── */
  .rail-title { font-size: 1.4rem !important; padding: 0 14px; }
  .coming-soon-section { padding: 40px 0; }

  /* ── FILM / POSTER PAGES ── */
  .poster-hero { height: 42vh !important; }
  .poster-board { padding: 0 14px 60px !important; }
  .poster-title { font-size: clamp(1.7rem, 8vw, 2.8rem) !important; }
  .poster-meta-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .poster-details-row { grid-template-columns: 1fr !important; gap: 20px !important; }
  .poster-status { top: 14px !important; left: 14px !important; }
  .poster-back { top: 14px !important; right: 44px !important; }

  div[style*="margin-top:-30px"] {
    flex-direction: column !important;
    gap: 10px !important;
  }
  div[style*="margin-top:-30px"] a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px !important;
  }

  /* ── CASTING PAGE ── */
  .casting-page-header { padding: 24px 14px 14px !important; }
  .casting-page-header h1 { font-size: 1.8rem !important; }
  .casting-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .casting-grid-section { padding: 24px 14px 0 !important; }
  .film-cast-img { aspect-ratio: 3/4 !important; }
  .newsletter-section {
    margin: 0 14px 50px !important;
    padding: 22px 14px !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* ── MODALS ── */
  .modal-overlay { padding: 0 !important; align-items: flex-end !important; }
  .modal-box {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    border-radius: 16px 16px 0 0 !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
  }
  .modal-tab-content { padding: 20px 14px !important; }
  .form-row-two { grid-template-columns: 1fr !important; }

  /* ── CONTACT PAGE ── */
  .contact-layout { grid-template-columns: 1fr !important; }
  .contact-left {
    padding: 28px 14px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(218,175,55,0.08) !important;
  }
  .contact-right { padding: 22px 14px !important; }
  .contact-left h1 { font-size: 1.9rem !important; }

  /* ── ABOUT PAGE ── */
  .about-section { padding: 22px 14px !important; }
  .about-title { font-size: 1.8rem !important; }
  .about-manifesto { font-size: 1.1rem !important; }
  .about-body { font-size: 0.95rem !important; }
  .manifesto-section { grid-template-columns: 1fr !important; }
  .manifesto-sidebar { position: static !important; padding: 22px 14px 0 !important; border-right: none !important; }
  .manifesto-body { padding: 18px 14px !important; }
  .services-section { padding: 14px 14px 40px !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .stats-bar { grid-template-columns: 1fr 1fr !important; }
  .cta-banner {
    grid-template-columns: 1fr !important;
    padding: 28px 14px !important;
    text-align: center !important;
  }
  .cta-banner a { width: 100% !important; text-align: center !important; }

  /* ── CREW APPLICATION ── */
  .crew-body { grid-template-columns: 1fr !important; padding: 22px 14px 60px !important; gap: 28px !important; }
  .crew-hero { padding: 36px 14px 28px !important; }
  .crew-hero h1 { font-size: 1.8rem !important; }
  .dept-list { position: static !important; }
  .form-row-2 { grid-template-columns: 1fr !important; }

  /* ── ECHOS PAGE ── */
  .echos-page-header, .echos-filter { padding-left: 14px !important; padding-right: 14px !important; }
  .echos-body { grid-template-columns: 1fr !important; padding: 18px 14px 50px !important; }
  .echos-sidebar {
    padding-left: 0 !important;
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    padding-top: 28px !important;
  }
  .echos-filter { gap: 14px !important; flex-wrap: wrap !important; }
  .echos-container { width: 100% !important; padding: 0 14px !important; margin: 20px auto 50px !important; }
  .echo-header h3 { font-size: 1.1rem !important; line-height: 1.3 !important; }

  /* ── SHOP ── */
  .shop-page-header { padding: 28px 14px 0 !important; }
  .shop-page-header h1 { font-size: 1.8rem !important; }
  .shop-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .shop-grid-section { padding: 18px 12px 60px !important; }

  /* ── PRODUCT PAGE ── */
  .product-layout {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 0 14px !important;
    margin: 70px auto 60px !important;
  }
  .product-right h1 { font-size: 1.8rem !important; }

  /* ── CART PAGE ── */
  .cart-page { padding: 28px 14px 60px !important; }
  .cart-item { grid-template-columns: 70px 1fr !important; }
  .cart-item-right {
    grid-column: 1 / -1 !important;
    flex-direction: row !important;
    justify-content: space-between !important;
  }
  .summary-row, .checkout-btn { width: 100% !important; }
  .floating-cart { right: 42px !important; top: 68px !important; padding: 7px 12px !important; font-size: 0.72rem !important; }

  /* ── FOOTER ── */
  .site-footer { padding: 16px 14px !important; font-size: 0.85rem !important; }
  .site-footer-full { padding: 26px 14px 20px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 22px !important; }
  .footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }
  .footer-bottom a { margin-left: 10px !important; }

  /* ── LEGAL ── */
  .legal-wrapper { padding: 0 14px !important; margin: 88px auto 60px !important; }

  /* ── ARTICLE ── */
  .article-wrapper { margin: 100px auto 60px !important; padding: 0 14px !important; }
  .article-content h1 { font-size: 1.8rem !important; }
  .article-body { font-size: 15px !important; }
  .article-body p:first-of-type { font-size: 17px !important; }

  /* ── CTA BUTTONS ── */
  .cta-btn-primary, .cta-btn-secondary { padding: 12px 18px !important; font-size: 0.68rem !important; }

  /* ── FORMS ── */
  .bleuskm-form { margin: 14px 10px; padding: 18px 14px; }
}

/* ── iPhone SE / very small ── */
@media (max-width: 375px) {
  .hero-title { font-size: 1.15rem !important; }
  .project-rail { gap: 10px !important; padding: 0 10px !important; }
  .thumb-img { height: 130px !important; }
  .project-name { font-size: 0.65rem !important; }
  #channelsPopup > div { padding: 22px 14px !important; }
}

/* ── SHOPIFY OVERRIDES ── */
.shopify-buy__option-select {
  background: rgba(0,0,0,0.6) !important;
  border: 1px solid #DAAF37 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px !important;
}
.shopify-buy__option-select:focus {
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(218,175,55,0.4) !important;
}

/* ══════════════════════════════════════════════════════════
   MOBILE IMPROVEMENTS — comprehensive pass
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── GENERAL ── */
  * { box-sizing: border-box; }
  img { max-width: 100%; height: auto; }
  p, li, span { word-break: break-word; }

  /* ── ABOUT PAGE — services button centering ── */
  .hero-services-btn-top {
    position: static !important;
    top: auto !important; right: auto !important;
    margin: 20px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .hero-services-link {
    width: 100% !important;
    max-width: 300px !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-eyebrow {
    position: static !important;
    top: auto !important; left: auto !important;
    padding: 80px 16px 0 !important;
    text-align: center !important;
  }
  .about-hero-wrap {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .about-hero-text {
    text-align: center !important;
    padding: 0 16px !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 !important;
  }
  .services-section {
    padding: 28px 16px 40px !important;
    text-align: center !important;
  }
  .services-section h2,
  .services-section p { text-align: center !important; }
  .stats-bar {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    padding: 24px 16px !important;
    text-align: center !important;
  }
  .cta-banner {
    grid-template-columns: 1fr !important;
    padding: 28px 16px !important;
    text-align: center !important;
    gap: 16px !important;
  }
  .cta-banner a {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* ── PRODUCTIONS PAGE ── */
  #productions-nav {
    padding: 0 10px !important;
    gap: 0 !important;
  }
  .prod-tab {
    font-size: 0.62rem !important;
    padding: 10px 10px !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
  }
  .card-action-btn {
    font-size: 0.58rem !important;
    padding: 8px 10px !important;
    letter-spacing: 1px !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    margin-top: 6px !important;
  }
  .soon-badge {
    font-size: 0.55rem !important;
    padding: 4px 8px !important;
  }
  .project-rail {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 12px !important;
  }

  /* ── MODALS (casting / apply) ── */
  .modal-overlay {
    padding: 0 !important;
    align-items: flex-end !important;
  }
  .modal-box {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 90vh !important;
    border-radius: 16px 16px 0 0 !important;
    overflow-y: auto !important;
    margin: 0 !important;
  }
  .modal-tab-content { padding: 18px 14px 30px !important; }
  .modal-tabs { overflow-x: auto; white-space: nowrap; }
  .modal-tab-btn { font-size: 0.62rem !important; padding: 10px 12px !important; }
  .form-row-two,
  .form-row-2 { grid-template-columns: 1fr !important; }
  .form-field input,
  .form-field textarea,
  .form-field select {
    font-size: 16px !important; /* prevents iOS zoom */
  }

  /* ── CASTING PAGE ── */
  .casting-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .casting-grid-section { padding: 20px 12px 0 !important; }
  .casting-page-header { padding: 22px 14px 10px !important; }
  .casting-page-header h1 { font-size: 1.7rem !important; }

  /* ── CREW APPLICATION ── */
  .crew-body {
    grid-template-columns: 1fr !important;
    padding: 20px 14px 60px !important;
    gap: 24px !important;
  }
  .crew-hero { padding: 36px 14px 24px !important; }
  .crew-hero h1 { font-size: 1.7rem !important; text-align: center !important; }
  .crew-hero p { text-align: center !important; }
  .dept-list { position: static !important; }
  .pill-group { gap: 8px !important; }
  .pill { font-size: 0.75rem !important; padding: 0.38rem 0.75rem !important; }
  .collective-fields-inner { padding: 1rem 0.85rem !important; }

  /* ── CONTACT ── */
  .contact-layout {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .contact-left {
    padding: 30px 16px 22px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(218,175,55,0.1) !important;
  }
  .contact-right { padding: 22px 16px 40px !important; }
  .contact-left h1 { font-size: 1.8rem !important; }
  .contact-form-wrap { padding: 0 !important; }

  /* ── ECHOS ── */
  .echos-body {
    grid-template-columns: 1fr !important;
    padding: 16px 14px 50px !important;
  }
  .echos-sidebar {
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    padding: 20px 0 0 !important;
  }
  .echos-filter { gap: 10px !important; flex-wrap: wrap !important; padding: 0 14px !important; }
  .echos-page-header { padding: 22px 14px 10px !important; }
  .echo-card { padding: 16px 14px !important; }
  .echo-header h3 { font-size: 1rem !important; line-height: 1.3 !important; }

  /* ── SHOP ── */
  .shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .shop-grid-section { padding: 16px 12px 60px !important; }
  .shop-page-header { padding: 28px 14px 0 !important; }
  .shop-page-header h1 { font-size: 1.8rem !important; }

  /* ── PRODUCT PAGE ── */
  .product-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 14px !important;
    margin: 80px auto 60px !important;
  }
  .product-right h1 { font-size: 1.7rem !important; }
  .product-description { font-size: 1rem !important; }

  /* ── FILM DETAIL PAGES ── */
  .poster-hero { height: 40vh !important; }
  .poster-board { padding: 0 14px 60px !important; }
  .poster-title { font-size: clamp(1.5rem, 7vw, 2.5rem) !important; }
  .poster-meta-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
  .poster-details-row { grid-template-columns: 1fr !important; gap: 16px !important; }

  /* ── ARCHIVE / ARTICLE PAGES ── */
  .archive-page { padding: 60px 16px 80px !important; }
  .article-wrapper { margin: 88px auto 60px !important; padding: 0 16px !important; }
  .article-content h1 { font-size: 1.6rem !important; line-height: 1.2 !important; }
  .article-body { font-size: 15px !important; line-height: 1.7 !important; }
  .back-link { margin-bottom: 20px !important; }

  /* ── VISUALS ── */
  .visuals-grid { grid-template-columns: 1fr !important; gap: 10px !important; padding: 0 12px !important; }
  .visuals-overlay-logo img { width: 85vw !important; }

  /* ── FOOTER ── */
  .site-footer { padding: 16px 14px !important; font-size: 0.82rem !important; }
  .site-footer-full { padding: 28px 14px 20px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .footer-bottom {
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
    padding-top: 14px !important;
  }

  /* ── GENERAL TEXT OVERFLOW ── */
  section, div { overflow-x: hidden; }
  h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; }
}

/* ── Very small phones (SE etc) ── */
@media (max-width: 375px) {
  .project-rail { gap: 8px !important; padding: 0 10px !important; }
  .thumb-img { height: 120px !important; }
  .project-name { font-size: 0.62rem !important; }
  .casting-grid { grid-template-columns: 1fr !important; }
  .shop-grid { grid-template-columns: 1fr !important; }
  .pill { font-size: 0.7rem !important; padding: 0.3rem 0.6rem !important; }
}
