/* ====================================================
   LES FILMS D'ANTOINE — main.css
   ==================================================== */

:root {
  --bg: #F4F2ED;
  --text: #1a1916;
  --muted: #8a8880;
  --border: rgba(26, 25, 22, .11);
  --serif: 'Cormorant', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 58px;
  background: var(--bg);
  border-bottom: .5px solid var(--border);
}

.site-logo img {
  height: 38px;
  width: auto;
}

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

.main-nav a {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  opacity: .6;
  transition: opacity .2s;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { opacity: 1; }

.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  border-bottom: 1px solid var(--text);
  padding-bottom: 1px;
}

.lang-switcher {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--muted);
}
.lang-switcher .active { color: var(--text); font-weight: 500; }

/* ---- HERO (front page) ---- */
.hero {
  height: 86vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: #1e2a1c;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s ease;
}
.hero:hover .hero-bg { transform: scale(1.02); }

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,25,22,.9) 0%, rgba(26,25,22,.12) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 36px 44px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: #F4F2ED;
  line-height: 1.05;
}

.hero-meta { text-align: right; }
.hero-tag {
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(244,242,237,.4);
  margin-bottom: 4px;
}
.hero-dir {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(244,242,237,.78);
}

.scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: .5px;
  height: 28px;
  background: rgba(244,242,237,.28);
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100%{opacity:.25} 50%{opacity:.75} }

/* ---- SECTION HEADER ---- */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 44px 36px 20px;
  border-bottom: .5px solid var(--border);
}
.section-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
}
.section-count {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .06em;
}

/* ---- FILM GRID ---- */
.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.film-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  border-right: .5px solid var(--border);
  border-bottom: .5px solid var(--border);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.film-card:nth-child(3n) { border-right: none; }

.film-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.film-card-placeholder {
  width: 100%;
  height: 100%;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.film-card:hover .film-card-thumb,
.film-card:hover .film-card-placeholder { transform: scale(1.05); }

.film-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,25,22,.84) 0%, rgba(26,25,22,.06) 55%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}
.film-card:hover .film-card-overlay { opacity: 1; }

.film-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 16px 14px;
  transform: translateY(3px);
  transition: transform .3s;
}
.film-card:hover .film-card-info { transform: translateY(0); }

.film-card-year {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,242,237,.42);
  margin-bottom: 3px;
}
.film-card-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: #F4F2ED;
  line-height: 1.1;
  margin-bottom: 3px;
}
.film-card-director {
  font-size: 11px;
  color: rgba(244,242,237,.58);
  letter-spacing: .03em;
}

.film-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  z-index: 3;
}
.film-card:hover .film-card-play { opacity: 1; }

.film-card-play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(244,242,237,.65);
  background: rgba(26,25,22,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform .2s, background .2s;
}
.film-card:hover .film-card-play-btn { transform: scale(1.07); background: rgba(26,25,22,.55); }

.film-card-play-btn svg { margin-left: 3px; }
.ph-1  { background: linear-gradient(145deg,#2a2420,#4a3d35); }
.ph-2  { background: linear-gradient(145deg,#1e2d3d,#2e4560); }
.ph-3  { background: linear-gradient(145deg,#1e3d2d,#254a38); }
.ph-4  { background: linear-gradient(145deg,#2d2420,#4a3530); }
.ph-5  { background: linear-gradient(145deg,#1e3a2d,#254d38); }
.ph-6  { background: linear-gradient(145deg,#2e1e3d,#3d2a52); }
.ph-7  { background: linear-gradient(145deg,#2d2a1e,#4a3e20); }
.ph-8  { background: linear-gradient(145deg,#3d2020,#5e3030); }
.ph-9  { background: linear-gradient(145deg,#1e2a3d,#253858); }
.ph-10 { background: linear-gradient(145deg,#3d1e2a,#52283a); }
.ph-11 { background: linear-gradient(145deg,#1e3d1e,#254d25); }
.ph-12 { background: linear-gradient(145deg,#2a1e3d,#382852); }
.ph-13 { background: linear-gradient(145deg,#3a2d1e,#524020); }
.ph-14 { background: linear-gradient(145deg,#1e2d2a,#253d38); }
.ph-15 { background: linear-gradient(145deg,#2d1e1e,#452525); }
.ph-16 { background: linear-gradient(145deg,#1e2d1e,#253d25); }
.ph-17 { background: linear-gradient(145deg,#3d2a1e,#523a28); }
.ph-18 { background: linear-gradient(145deg,#2a2d1e,#3d4028); }
.ph-19 { background: linear-gradient(145deg,#1e1e3d,#252552); }
.ph-20 { background: linear-gradient(145deg,#2d1e2a,#40253a); }
.ph-21 { background: linear-gradient(145deg,#1e3a1e,#254d25); }
.ph-22 { background: linear-gradient(145deg,#3d3a1e,#525025); }

/* ---- FILM DETAIL ---- */
.film-detail-hero {
  height: 58vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.film-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.film-detail-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,25,22,.92) 0%, rgba(26,25,22,.22) 60%, transparent 100%);
}
.film-detail-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 36px 38px;
  width: 100%;
}
.film-detail-genre {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,242,237,.38);
  margin-bottom: 8px;
}
.film-detail-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 300;
  font-style: italic;
  color: #F4F2ED;
  line-height: 1;
}
.film-detail-director {
  font-size: 13px;
  color: rgba(244,242,237,.58);
  margin-top: 7px;
}

.film-detail-body {
  display: grid;
  grid-template-columns: 1fr 310px;
  border-top: .5px solid var(--border);
}
.film-detail-main {
  padding: 38px 36px 56px;
  border-right: .5px solid var(--border);
}
.film-detail-aside { padding: 38px 28px 56px; }

.field-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.film-synopsis {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 580px;
}
.film-cast {
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--text);
  line-height: 2.1;
}

.award-row {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-top: .5px solid var(--border);
  align-items: flex-start;
}
.award-fest {
  font-size: 10.5px;
  color: var(--muted);
  min-width: 90px;
  line-height: 1.5;
  flex-shrink: 0;
}
.award-name { font-size: 11.5px; color: var(--text); line-height: 1.5; }

.fiche-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-top: .5px solid var(--border);
  gap: 10px;
}
.fiche-key {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.fiche-val { font-size: 11.5px; color: var(--text); text-align: right; line-height: 1.5; }
.fiche-val-sm { font-size: 10.5px; color: var(--muted); text-align: right; line-height: 1.5; }

.trailer-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding: 10px 18px;
  border: .5px solid var(--border);
  background: none;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}
.trailer-btn:hover { background: var(--text); color: var(--bg); }

/* ---- HOME ABOUT STRIP ---- */
.home-about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: .5px solid var(--border);
}
.home-about-col {
  padding: 52px 36px;
  border-right: .5px solid var(--border);
}
.home-about-col:last-child { border-right: none; }
.home-about-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.home-about-text {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
}
.home-about-small {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 16px;
}
.home-about-small strong { color: var(--text); font-weight: 400; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.tag-item {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border: .5px solid var(--border);
  color: var(--muted);
}

/* ---- EN DÉVELOPPEMENT ---- */
.dev-section-header {
  padding: 14px 36px 10px;
  border-bottom: .5px solid var(--border);
  background: rgba(26,25,22,.025);
}
.dev-section-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.dev-grid { display: grid; grid-template-columns: 1fr 1fr; }
.dev-item {
  padding: 26px 36px;
  border-right: .5px solid var(--border);
  border-bottom: .5px solid var(--border);
}
.dev-item:nth-child(2n) { border-right: none; }
.dev-type {
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.dev-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 5px;
}
.dev-director { font-size: 13px; color: var(--text); margin-bottom: 4px; }
.dev-partners { font-size: 11px; color: var(--muted); line-height: 1.6; }
.badge-festival {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 8px;
  background: #E1F5EE;
  color: #0F6E56;
  margin-top: 6px;
}
.badge-role {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 8px;
  background: #E6F1FB;
  color: #185FA5;
  margin-top: 6px;
  margin-left: 4px;
}

/* ---- PRODUCTION SERVICES ---- */
.ps-hero { padding: 64px 36px 52px; border-bottom: .5px solid var(--border); }
.ps-title {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 300;
  font-style: italic;
  max-width: 560px;
  line-height: 1.2;
  margin-bottom: 22px;
}
.ps-intro { font-size: 12.5px; line-height: 1.9; color: var(--muted); max-width: 580px; }

.tax-box {
  background: rgba(26,25,22,.04);
  border: .5px solid var(--border);
  padding: 28px 32px;
  margin-top: 28px;
  max-width: 720px;
}
.tax-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.tax-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
.tax-rate {
  text-align: center;
  padding: 18px;
  border: .5px solid var(--border);
  background: var(--bg);
}
.tax-rate-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
}
.tax-rate-label { font-size: 11px; color: var(--muted); margin-top: 6px; }
.tax-rate-cond { font-size: 10px; color: var(--muted); margin-top: 4px; font-style: italic; }
.tax-detail {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.9;
  border-top: .5px solid var(--border);
  padding-top: 14px;
}
.tax-detail strong { color: var(--text); font-weight: 400; }
.tax-cnc { margin-top: 12px; font-size: 11px; color: var(--muted); }
.tax-cnc a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: .5px solid var(--border); }
.service-item {
  padding: 28px 32px;
  border-right: .5px solid var(--border);
  border-bottom: .5px solid var(--border);
}
.service-item:nth-child(3n) { border-right: none; }
.service-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  font-style: italic;
  color: rgba(26,25,22,.12);
  margin-bottom: 10px;
}
.service-title { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 7px; }
.service-body { font-size: 12px; line-height: 1.8; color: var(--muted); }
.service-body em { font-style: normal; color: var(--text); }

.refs-header { padding: 32px 36px 18px; border-top: .5px solid var(--border); }
.refs-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 6px;
}
.refs-sub { font-size: 12px; color: var(--muted); }
.refs-grid { display: grid; grid-template-columns: repeat(5,1fr); border-top: .5px solid var(--border); }
.ref-item { padding: 20px 22px; border-right: .5px solid var(--border); }
.ref-item:last-child { border-right: none; }
.ref-title { font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 3px; line-height: 1.3; }
.ref-director { font-size: 11px; color: var(--muted); margin-bottom: 3px; }
.ref-note { font-size: 10.5px; color: var(--muted); line-height: 1.5; }
.badge-ref {
  display: inline-block;
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 6px;
  background: #E6F1FB;
  color: #185FA5;
  margin-top: 5px;
}
.badge-ref-green { background: #E1F5EE; color: #0F6E56; }

.ps-contact {
  padding: 40px 36px;
  border-top: .5px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.ps-contact-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 10px;
}
.ps-contact-body { font-size: 12.5px; color: var(--muted); line-height: 1.9; }
.ps-contact-body a { color: var(--text); }
.ps-contact-note { font-size: 11px; color: var(--muted); max-width: 280px; line-height: 1.8; text-align: right; }

/* ---- APPS ---- */
.apps-hero { padding: 64px 36px 52px; border-bottom: .5px solid var(--border); }
.apps-section-label {
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.apps-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  font-style: italic;
  max-width: 500px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.apps-intro { font-size: 12.5px; line-height: 1.85; color: var(--muted); max-width: 510px; }

.app-card { display: grid; grid-template-columns: 1fr 1fr; border-top: .5px solid var(--border); }
.app-info { padding: 40px 36px; border-right: .5px solid var(--border); }
.app-preview { padding: 40px 36px; }
.app-os-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.app-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}
.app-desc { font-size: 12.5px; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
.app-feature { display: flex; gap: 10px; padding: 10px 0; border-top: .5px solid var(--border); }
.app-feature-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--muted);
  margin-top: 7px;
  flex-shrink: 0;
}
.app-feature-text { font-size: 12px; color: var(--text); line-height: 1.6; }
.app-cta {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 20px;
  border: .5px solid var(--border);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}
.app-cta:hover { background: var(--text); color: var(--bg); }

/* ---- ABOUT ---- */
.about-layout { display: grid; grid-template-columns: 1fr 380px; border-top: .5px solid var(--border); }
.about-main { padding: 52px 36px 56px; border-right: .5px solid var(--border); }
.about-sidebar { padding: 52px 32px 56px; background: rgba(26,25,22,.025); }

.about-page-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 32px;
}
.bio-section { margin-bottom: 28px; }
.bio-section-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: .5px solid var(--border);
}
.bio-text { font-size: 13px; line-height: 1.95; color: var(--muted); }
.bio-text strong { color: var(--text); font-weight: 400; }
.bio-text em { font-style: italic; color: var(--text); }
.bio-text p { margin-bottom: 14px; }
.bio-text p:last-child { margin-bottom: 0; }

.teaching-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.teach-item {
  padding: 10px 12px;
  border-left: 2px solid var(--border);
  background: rgba(26,25,22,.025);
}
.teach-school { font-size: 12px; font-weight: 500; color: var(--text); }
.teach-course { font-size: 11px; color: var(--muted); margin-top: 2px; line-height: 1.4; }

.sidebar-section { margin-bottom: 28px; }
.sidebar-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.sidebar-contact { font-size: 12.5px; line-height: 2; color: var(--muted); }
.sidebar-contact a { color: var(--text); }

.memberships-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.membership-item {
  padding: 9px 12px;
  border: .5px solid var(--border);
  background: var(--bg);
}
.membership-name { font-size: 11.5px; font-weight: 500; color: var(--text); line-height: 1.3; }
.membership-role { font-size: 10px; color: var(--muted); margin-top: 2px; }

.commission-list { font-size: 11.5px; color: var(--muted); line-height: 2; }
.commission-list span { color: var(--text); }

.other-activities { border-top: .5px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; }
.other-col { padding: 36px; border-right: .5px solid var(--border); }
.other-col:last-child { border-right: none; }
.other-col-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.other-col-logo { margin-bottom: 16px; }
.other-col-logo img { height: 28px; width: auto; }
.other-col-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 12px;
}
.other-col-body { font-size: 12.5px; color: var(--muted); line-height: 1.85; }
.other-col-body a { color: var(--text); }
.other-col-body strong { color: var(--text); font-weight: 400; }

/* ---- BACK LINK ---- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 20px 36px;
  transition: color .2s;
}
.back-link:hover { color: var(--text); }

/* ---- FOOTER ---- */
.site-footer {
  padding: 26px 36px;
  border-top: .5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo img { height: 32px; width: auto; opacity: .6; }
.footer-legal { font-size: 10.5px; color: var(--muted); }
.footer-legal a { color: var(--text); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .site-header { padding: 0 20px; }
  .main-nav { display: none; }
  .film-grid { grid-template-columns: repeat(2,1fr); }
  .film-card:nth-child(3n) { border-right: .5px solid var(--border); }
  .film-card:nth-child(2n) { border-right: none; }
  .film-detail-body { grid-template-columns: 1fr; }
  .film-detail-aside { border-top: .5px solid var(--border); }
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { border-top: .5px solid var(--border); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .refs-grid { grid-template-columns: 1fr 1fr; }
  .other-activities { grid-template-columns: 1fr; }
  .other-col { border-right: none; border-bottom: .5px solid var(--border); }
  .home-about-strip { grid-template-columns: 1fr; }
  .home-about-col { border-right: none; border-bottom: .5px solid var(--border); }
  .tax-grid { grid-template-columns: 1fr; }
  .dev-grid { grid-template-columns: 1fr; }
  .dev-item:nth-child(2n) { border-right: .5px solid var(--border); }
  .dev-item { border-right: none; }
  .app-card { grid-template-columns: 1fr; }
  .app-info { border-right: none; border-bottom: .5px solid var(--border); }
  .ps-contact { flex-direction: column; }
  .ps-contact-note { text-align: left; }
}

@media (max-width: 600px) {
  .film-grid { grid-template-columns: 1fr; }
  .film-card:nth-child(2n) { border-right: .5px solid var(--border); }
  .film-card { border-right: none !important; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none !important; }
  .refs-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { flex-direction: column; gap: 12px; }
  .hero-meta { text-align: left; }
  .memberships-grid { grid-template-columns: 1fr; }
}

/* ---- CAROUSEL ---- */
.film-carousel{position:relative;width:100%;aspect-ratio:16/7;overflow:hidden;background:#111}
.film-carousel-track{width:100%;height:100%;position:relative}
.film-carousel-slide{position:absolute;inset:0;opacity:0;transition:opacity .55s ease}
.film-carousel-slide.active{opacity:1}
.film-carousel-slide img{width:100%;height:100%;object-fit:cover;display:block}
.carousel-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(26,25,22,.45);border:.5px solid rgba(244,242,237,.2);color:rgba(244,242,237,.85);width:44px;height:44px;border-radius:50%;font-size:22px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .2s;backdrop-filter:blur(4px);z-index:5}
.carousel-btn:hover{background:rgba(26,25,22,.75)}
.carousel-prev{left:18px}
.carousel-next{right:18px}
.carousel-dots{position:absolute;bottom:14px;left:50%;transform:translateX(-50%);display:flex;gap:7px;z-index:5}
.carousel-dot{width:6px;height:6px;border-radius:50%;background:rgba(244,242,237,.35);border:none;cursor:pointer;transition:background .2s,transform .2s;padding:0}
.carousel-dot.active{background:rgba(244,242,237,.9);transform:scale(1.3)}
