/* ============================================================
   PANADIA FILMS — Main Stylesheet
   All original CSS preserved from HTML source files
   ============================================================ */

:root {
  --navy: #0d2060;
  --navy-mid: #1a3080;
  --navy-light: #e8edf8;
  --navy-pale: #f0f3fb;
  --gold: #c49a2e;
  --gold-light: #e8c050;
  --gold-pale: #fdf6e3;
  --white: #ffffff;
  --off-white: #f7f8fc;
  --text-dark: #0a1535;
  --text-mid: #3d4f7c;
  --text-soft: #8091b5;
  --border: rgba(13,32,96,0.1);
  --shadow-sm: 0 2px 12px rgba(13,32,96,0.08);
  --shadow-md: 0 8px 32px rgba(13,32,96,0.12);
  --shadow-lg: 0 24px 64px rgba(13,32,96,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 9999;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 2px; }

/* ── NAV ── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 76px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px;
  display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 8px 7px;
}
.logo-bar-top { height: 6px; background: var(--navy); border-radius: 1px; width: 100%; }
.logo-bar-bot {
  height: 10px; background: var(--navy); border-radius: 1px 1px 0 1px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
  position: relative;
}
.logo-text-wrap { line-height: 1; }
.logo-brand { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: 1px; color: var(--navy); display: block; }
.logo-sub { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 8px 16px;
  color: var(--text-mid); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  transition: color 0.2s; border-radius: 6px;
}
.nav-links > li > a:hover,
.nav-links > li > a:focus,
.nav-links > li > a.active { color: var(--navy); background: var(--navy-pale); }
.nav-links > li:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  min-width: 210px; padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.25s ease;
}
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 6px;
  color: var(--text-mid); text-decoration: none;
  font-size: 13px; font-weight: 400;
  transition: all 0.15s;
}
.dropdown a:hover { background: var(--navy-pale); color: var(--navy); padding-left: 18px; }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  border-radius: 8px !important; padding: 9px 20px !important; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; color: var(--white) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 1px; transition: all 0.3s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding-top: 76px;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a80 50%, #0a1840 100%);
  position: relative; overflow: hidden;
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px),
                    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px);
}
.page-hero-glow { position: absolute; top: -150px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(196,154,46,0.15) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 2; max-width: 1380px; margin: 0 auto; padding: 80px 60px; }
.page-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; font-size: 12px; color: rgba(255,255,255,0.45); }
.page-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--gold-light); }
.page-breadcrumb span { color: var(--gold-light); }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: rgba(196,154,46,0.15); border: 1px solid rgba(196,154,46,0.3); padding: 6px 16px; border-radius: 100px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 20px; }
.page-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(40px, 6vw, 80px); font-weight: 700; line-height: 1.05; color: var(--white); margin-bottom: 20px; }
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 560px; margin-bottom: 60px; }
.page-hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.ph-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--gold-light); line-height: 1; display: block; }
.ph-stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ── SECTION COMMON ── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 14px;
}
.section-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold); border-radius: 1px; }
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.1;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--navy); }
.section-sub { font-size: 15px; color: var(--text-soft); line-height: 1.8; max-width: 540px; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  border: none; cursor: pointer; border-radius: 8px; text-decoration: none; display: inline-block;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(196,154,46,0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,154,46,0.45); color: var(--navy); }
.btn-white-outline {
  background: transparent; color: var(--white);
  padding: 13px 28px; font-size: 13px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.35); cursor: pointer; border-radius: 8px;
  text-decoration: none; display: inline-block; transition: all 0.25s;
}
.btn-white-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); color: var(--white); }
.btn-navy {
  background: var(--navy); color: var(--white);
  padding: 13px 28px; font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; border-radius: 8px; text-decoration: none; display: inline-block;
  transition: all 0.25s; box-shadow: 0 4px 16px rgba(13,32,96,0.25);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,32,96,0.3); color: var(--white); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  padding: 12px 26px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--navy-light); cursor: pointer; border-radius: 8px;
  text-decoration: none; display: inline-block; transition: all 0.25s;
}
.btn-outline-navy:hover { border-color: var(--navy); background: var(--navy-pale); color: var(--navy); }
.btn-text-navy {
  font-size: 13px; color: var(--navy); font-weight: 600; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s;
}
.btn-text-navy:hover { gap: 14px; color: var(--navy); }
.btn-text-navy::after { content: '→'; }

/* ── HERO (front page) ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a80 40%, #112080 70%, #0a1840 100%);
  overflow: hidden; padding-top: 76px;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px),
                    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,1) 60px, rgba(255,255,255,1) 61px);
}
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,46,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -200px; left: -150px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
}
.hero-filmstrip {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 56px; display: flex; overflow: hidden; opacity: 0.08;
}
.fs-frame { flex: 0 0 56px; height: 56px; border: 1px solid rgba(255,255,255,0.5); margin: 0 1px; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1380px; margin: 0 auto; padding: 80px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-content { animation: fadeUp 0.9s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(196,154,46,0.15); border: 1px solid rgba(196,154,46,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600; margin-bottom: 28px;
}
.hero-eyebrow::before { content: '●'; font-size: 7px; animation: blink 1.5s ease infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700; line-height: 1.08; color: var(--white);
  margin-bottom: 24px; letter-spacing: -0.5px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.8; margin-bottom: 40px; max-width: 480px;
  letter-spacing: 0.3px;
}
.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-tag {
  padding: 5px 14px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 100px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.65); font-weight: 500;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  position: relative; animation: fadeUp 0.9s 0.2s ease forwards; opacity: 0;
}
.hero-poster-stack { position: relative; height: 520px; }
.poster-card {
  position: absolute; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-lg); transition: transform 0.3s;
}
.poster-main {
  width: 260px; height: 390px; bottom: 0; left: 50%; transform: translateX(-50%);
  z-index: 3;
}
.poster-left {
  width: 200px; height: 300px; bottom: 40px; left: 10%;
  z-index: 2; transform: rotate(-6deg);
  filter: brightness(0.75);
}
.poster-right {
  width: 200px; height: 300px; bottom: 40px; right: 10%;
  z-index: 2; transform: rotate(6deg);
  filter: brightness(0.75);
}
.poster-bg {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 20px 16px;
}
.pb-navy { background: linear-gradient(160deg, #061440, #0d2060, #1a3a8a); }
.pb-red { background: linear-gradient(160deg, #1a0505, #3a0d0d, #5a1010); }
.pb-green { background: linear-gradient(160deg, #021505, #04300a, #074010); }
.pb-amber { background: linear-gradient(160deg, #1a1005, #3a2a00, #5a3a05); }
.poster-film-name {
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.9); text-align: center; line-height: 1.2;
}
.poster-film-name-sm {
  font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.75); text-align: center; line-height: 1.2;
}
.poster-badge {
  background: var(--gold); color: var(--navy);
  padding: 4px 12px; font-size: 9px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; border-radius: 4px;
  margin-bottom: 12px;
}
.hero-stats-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 16px 24px;
  display: flex; gap: 24px; align-items: center; z-index: 4;
}
.hs-item { text-align: center; }
.hs-num { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--gold-light); line-height: 1; }
.hs-label { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hs-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* ── FEATURED ── */
#featured { padding: 100px 60px; background: var(--white); max-width: 1380px; margin: 0 auto; }
.featured-wrap { display: grid; grid-template-columns: auto 1fr; gap: 72px; align-items: center; }
.featured-poster-wrap { position: relative; }
.featured-poster { width: 300px; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 2/3; }
.featured-poster-inner {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #061440, #0d2060, #1a4090);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 28px 22px;
}
.featured-poster-now {
  position: absolute; top: 18px; right: -14px;
  background: var(--gold); color: var(--navy);
  padding: 7px 18px; border-radius: 6px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  box-shadow: 0 4px 16px rgba(196,154,46,0.4);
}
.featured-accent {
  position: absolute; bottom: -16px; left: -16px;
  width: 80px; height: 80px; border-radius: 8px;
  background: var(--navy-light); z-index: -1;
}
.featured-info { padding: 10px 0; }
.film-genre-tags { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.film-genre-tag {
  padding: 4px 14px; background: var(--navy-pale); border: 1px solid var(--navy-light);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy-mid); font-weight: 600;
  border-radius: 100px;
}
.featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 60px); font-weight: 700; line-height: 1.05;
  color: var(--text-dark); margin-bottom: 20px;
}
.featured-meta { display: flex; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.featured-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-soft); font-weight: 500;
}
.featured-meta-item::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.featured-synopsis {
  font-size: 15px; line-height: 1.9; color: var(--text-mid);
  border-left: 3px solid var(--gold); padding-left: 20px; margin-bottom: 36px;
  max-width: 520px;
}
.featured-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ── FILMS GRID ── */
#films-section { padding: 80px 60px; background: var(--off-white); }
.films-section-inner { max-width: 1380px; margin: 0 auto; }
.films-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.films-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.film-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.35s; cursor: pointer;
  border: 1px solid transparent;
}
.film-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--navy-light); }
.film-card:hover .film-overlay { opacity: 1; }
.film-poster { aspect-ratio: 2/3; position: relative; overflow: hidden; }
.film-poster-bg {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 16px 14px; transition: transform 0.4s;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.film-card:hover .film-poster-bg { transform: scale(1.04); }
.film-poster-bg.has-image {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.fpb1 { background: linear-gradient(160deg, #061440, #0d2060, #1a3a8a); }
.fpb2 { background: linear-gradient(160deg, #1a0505, #3a0d0d, #5a1515); }
.fpb3 { background: linear-gradient(160deg, #021505, #043010, #074518); }
.fpb4 { background: linear-gradient(160deg, #1a1005, #3a2a00, #5a3d05); }
.fpb5 { background: linear-gradient(160deg, #0d0520, #200a40, #0d1840); }
.film-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  color: rgba(255,255,255,0.1); line-height: 1; position: absolute; top: 10px; left: 12px;
}
.film-name {
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,0.9); text-align: center; line-height: 1.3;
}
.film-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,32,96,0.95) 0%, rgba(13,32,96,0.6) 50%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity 0.3s;
}
.film-view-btn {
  background: var(--white); color: var(--navy);
  padding: 9px 20px; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700;
  border: none; border-radius: 6px; cursor: pointer; width: 100%;
  transition: background 0.2s;
}
.film-view-btn:hover { background: var(--gold); color: var(--navy); }
.film-card-body { padding: 14px 16px; }
.film-card-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.film-card-meta { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-soft); }

/* ── FILMS PAGE FILTER ── */
.films-filters {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; align-items: center;
}
.filter-select {
  padding: 10px 18px; background: var(--white); border: 1.5px solid var(--border);
  border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-dark);
  cursor: pointer; outline: none; transition: border-color 0.2s;
  appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238091b5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.filter-select:focus { border-color: var(--navy); }
.filter-btn-active { border-color: var(--navy); background: var(--navy-pale); color: var(--navy); }
.films-loading { display: none; text-align: center; padding: 40px; color: var(--text-soft); }
.films-loading.visible { display: block; }
.films-no-results { display: none; text-align: center; padding: 60px 20px; }
.films-no-results.visible { display: block; }

/* ── FILM MODAL ── */
.film-modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,21,53,0.88); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 20px;
}
.film-modal-overlay.active { opacity: 1; pointer-events: auto; }
.film-modal {
  background: var(--white); border-radius: 20px;
  max-width: 860px; width: 100%; max-height: 90vh;
  overflow-y: auto; position: relative;
  transform: scale(0.95); transition: transform 0.3s;
  box-shadow: var(--shadow-lg);
}
.film-modal-overlay.active .film-modal { transform: scale(1); }
.film-modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-pale); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--navy); z-index: 10;
  transition: all 0.2s;
}
.film-modal-close:hover { background: var(--navy); color: var(--white); }
.film-modal-inner { display: grid; grid-template-columns: 220px 1fr; }
.film-modal-poster { aspect-ratio: 2/3; border-radius: 20px 0 0 20px; overflow: hidden; }
.film-modal-poster-bg { width: 100%; height: 100%; }
.film-modal-content { padding: 40px; }
.film-modal-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.film-modal-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.film-modal-meta-item { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-soft); display: flex; align-items: center; gap: 6px; }
.film-modal-meta-item::before { content: ''; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.film-modal-synopsis { font-size: 14px; line-height: 1.85; color: var(--text-mid); border-left: 3px solid var(--gold); padding-left: 16px; margin-bottom: 28px; }
.film-modal-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── UPCOMING GEMS ── */
#upcoming { padding: 80px 60px; background: var(--white); }
.upcoming-inner { max-width: 1380px; margin: 0 auto; }
.upcoming-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.upcoming-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.upcoming-card {
  background: var(--off-white); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.3s; cursor: pointer;
}
.upcoming-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--navy-light); }
.upcoming-poster { aspect-ratio: 2/3; position: relative; overflow: hidden; }
.upcoming-poster-bg {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 16px 14px;
}
.ub1 { background: linear-gradient(135deg, #0a0520, #1a0a40, #0d2060); }
.ub2 { background: linear-gradient(135deg, #200505, #3a0a0a, #500f0f); }
.ub3 { background: linear-gradient(135deg, #051a05, #0a300a, #0f3a0f); }
.ub4 { background: linear-gradient(135deg, #1a1000, #2a1a00, #3a2400); }
.ub5 { background: linear-gradient(135deg, #050d1a, #0a1535, #071040); }
.upcoming-ribbon {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  padding: 4px 12px; border-radius: 5px; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
}
.upcoming-body { padding: 14px 16px; }
.upcoming-title { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.upcoming-meta-tag { font-size: 11px; color: var(--text-soft); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.countdown-mini { display: flex; gap: 10px; }
.cd-u { text-align: center; }
.cd-n { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--navy); line-height: 1; display: block; }
.cd-l { font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-soft); }

/* ── STATS STRIP ── */
#stats { background: var(--navy); padding: 56px 60px; }
.stats-inner {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 64px; color: var(--gold-light);
  line-height: 1; letter-spacing: 2px; display: block;
}
.stat-label { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 8px; display: block; }

/* ── ABOUT (home) ── */
#about { padding: 100px 60px; background: var(--off-white); }
.about-inner { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-frame {
  aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-pale) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--navy-light); position: relative;
}
.about-frame-text {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px; color: rgba(13,32,96,0.12);
  text-align: center; letter-spacing: 6px; line-height: 1.1;
}
.about-corner-tl, .about-corner-br { position: absolute; width: 36px; height: 36px; }
.about-corner-tl { top: 14px; left: 14px; border-top: 2.5px solid var(--navy); border-left: 2.5px solid var(--navy); border-radius: 3px 0 0 0; }
.about-corner-br { bottom: 14px; right: 14px; border-bottom: 2.5px solid var(--navy); border-right: 2.5px solid var(--navy); border-radius: 0 0 3px 0; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.about-stat-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 20px 22px; }
.as-num { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--navy); line-height: 1; }
.as-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-soft); margin-top: 3px; }
.about-pillars { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.about-pillar { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.pillar-icon-wrap { width: 42px; height: 42px; border-radius: 10px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.pillar-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.pillar-text { font-size: 13px; color: var(--text-soft); line-height: 1.7; }

/* ── SERVICES ── */
#services { padding: 100px 60px; background: var(--white); }
.services-inner { max-width: 1380px; margin: 0 auto; }
.services-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.services-header .section-eyebrow { justify-content: center; }
.services-header .section-eyebrow::before { display: none; }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card {
  background: var(--off-white); border: 1px solid var(--border); border-radius: 14px;
  padding: 36px 24px; transition: all 0.35s; cursor: pointer; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--navy); transform: scaleX(0); transition: transform 0.35s;
  border-radius: 0 0 3px 3px;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover .service-title { color: var(--white); }
.service-card:hover .service-desc { color: rgba(255,255,255,0.6); }
.service-card:hover .service-num { color: rgba(255,255,255,0.06); }
.service-icon-wrap { width: 52px; height: 52px; border-radius: 12px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 24px; transition: background 0.3s; }
.service-card:hover .service-icon-wrap { background: rgba(255,255,255,0.1); }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: rgba(13,32,96,0.06); position: absolute; top: 16px; right: 16px; line-height: 1; transition: color 0.3s; }
.service-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; line-height: 1.2; transition: color 0.3s; }
.service-desc { font-size: 12px; color: var(--text-soft); line-height: 1.8; transition: color 0.3s; }

/* ── CTA BANNER ── */
#cta-banner { padding: 80px 60px; background: var(--off-white); }
.cta-inner {
  max-width: 1380px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a80 60%, #091840 100%);
  border-radius: 20px; padding: 72px 80px;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-inner::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,154,46,0.15) 0%, transparent 65%);
}
.cta-inner::after {
  content: 'PANADIA'; position: absolute; right: -10px; bottom: -50px;
  font-family: 'Bebas Neue', sans-serif; font-size: 160px;
  color: rgba(255,255,255,0.03); pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 20px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(32px, 3.5vw, 50px); font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 16px; }
.cta-title em { font-style: italic; color: var(--gold-light); }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; position: relative; z-index: 1; }

/* ── NEWS (home preview) ── */
#news { padding: 100px 60px; background: var(--white); }
.news-inner { max-width: 1380px; margin: 0 auto; }
.news-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.news-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
.news-card {
  background: var(--off-white); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: all 0.3s; cursor: pointer;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy-light); }
.news-img { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.news-img-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.nb1 { background: linear-gradient(135deg, #0a0d1a, #0d2060, #1a3a8a); }
.nb2 { background: linear-gradient(135deg, #1a0505, #3a0a0a, #4a1010); }
.nb3 { background: linear-gradient(135deg, #0a0a0a, #141414, #1e1e1e); }
.nb4 { background: linear-gradient(135deg, #050a0a, #0a1a1a, #051515); }
.nb5 { background: linear-gradient(135deg, #0a050a, #1a0a1a, #150515); }
.nb6 { background: linear-gradient(135deg, #0a0a05, #1a1a05, #151500); }
.nb7 { background: linear-gradient(135deg, #05050a, #0a0a20, #050515); }
.nb8 { background: linear-gradient(135deg, #0a0505, #200a0a, #150505); }
.nb9 { background: linear-gradient(135deg, #050a05, #0a200a, #051505); }
.news-img-label { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: rgba(255,255,255,0.2); letter-spacing: 3px; text-align: center; }
.news-tag-pill {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  padding: 4px 12px; border-radius: 100px; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
}
.news-body { padding: 24px; }
.news-date { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; font-weight: 600; }
.news-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--text-dark); line-height: 1.35; margin-bottom: 10px; }
.news-card:first-child .news-title { font-size: 24px; }
.news-excerpt { font-size: 13px; color: var(--text-soft); line-height: 1.75; }
.news-read-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--navy); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; text-decoration: none; transition: gap 0.2s; }
.news-read-more:hover { gap: 14px; color: var(--gold); }
.news-read-more::after { content: '→'; }

/* ── NEWS PAGE ── */
.news-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; align-items: center; }
.news-filter-btn {
  padding: 8px 18px; background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--text-mid);
  cursor: pointer; transition: all 0.2s;
}
.news-filter-btn.active,
.news-filter-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.news-search-wrap { position: relative; margin-left: auto; }
.news-search { padding: 10px 16px 10px 40px; background: var(--white); border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s; width: 240px; }
.news-search:focus { border-color: var(--navy); }
.news-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-soft); pointer-events: none; }
.news-load-more-wrap { text-align: center; margin-top: 48px; }

/* NEWS FEATURED */
.news-featured-article {
  background: var(--navy); border-radius: 20px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 60px;
}
.nfa-image { aspect-ratio: 16/9; background-size: cover; background-position: center; }
.nfa-content { padding: 52px 48px; }
.nfa-tag { display: inline-block; background: rgba(196,154,46,0.2); border: 1px solid rgba(196,154,46,0.4); color: var(--gold-light); padding: 4px 14px; border-radius: 100px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 20px; }
.nfa-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 40px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.nfa-excerpt { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 32px; }
.nfa-meta { display: flex; gap: 20px; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); }

/* MEDIA KIT */
.media-kit-section { background: var(--navy-pale); border: 1px solid var(--navy-light); border-radius: 20px; padding: 52px 48px; margin-top: 60px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.mk-title { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.mk-text { font-size: 14px; color: var(--text-soft); line-height: 1.75; max-width: 560px; }
.mk-items { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.mk-item { display: flex; align-items: center; gap: 10px; padding: 10px 18px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--text-dark); cursor: pointer; transition: all 0.2s; text-decoration: none; }
.mk-item:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-pale); }

/* NEWSLETTER */
.newsletter-section { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 52px 48px; margin-top: 32px; text-align: center; }
.nl-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.nl-text { font-size: 14px; color: var(--text-soft); margin-bottom: 32px; }

/* ── NEWS DETAIL ── */
.article-progress-bar { position: fixed; top: 76px; left: 0; right: 0; height: 3px; background: var(--navy-light); z-index: 999; }
.article-progress-fill { height: 100%; background: var(--gold); width: 0; transition: width 0.1s; }
.article-hero-inner { max-width: 1380px; margin: 0 auto; padding: 80px 60px; }
.article-layout { max-width: 1380px; margin: 0 auto; padding: 80px 60px; display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.article-content { }
.article-lead { font-size: 19px; line-height: 1.85; color: var(--text-mid); margin-bottom: 40px; font-weight: 400; }
.article-body { font-size: 16px; line-height: 1.9; color: var(--text-dark); }
.article-body h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--text-dark); margin: 48px 0 20px; line-height: 1.2; }
.article-body h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; color: var(--text-dark); margin: 36px 0 16px; }
.article-body p { margin-bottom: 24px; }
.article-body ul, .article-body ol { margin: 0 0 24px 24px; }
.article-body li { margin-bottom: 8px; line-height: 1.8; }
.article-body blockquote { border-left: 3px solid var(--gold); padding-left: 24px; margin: 36px 0; font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--navy); line-height: 1.6; }
.article-body img { width: 100%; height: auto; border-radius: 12px; margin: 32px 0; }
.article-sidebar { position: sticky; top: 100px; }
.toc-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; margin-bottom: 24px; }
.toc-title { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc-list a { color: var(--text-soft); text-decoration: none; font-size: 13px; transition: color 0.2s; padding: 4px 0; display: block; border-left: 2px solid transparent; padding-left: 12px; }
.toc-list a:hover, .toc-list a.active { color: var(--navy); border-left-color: var(--gold); }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.article-tag { padding: 6px 14px; background: var(--navy-pale); border: 1px solid var(--navy-light); border-radius: 100px; font-size: 11px; letter-spacing: 1px; color: var(--navy-mid); font-weight: 600; }
.related-articles { padding: 80px 60px; background: var(--off-white); }
.related-inner { max-width: 1380px; margin: 0 auto; }

/* ── ABOUT PAGE ── */
#story { padding: 100px 60px; background: var(--white); }
.story-inner { max-width: 1380px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-visual { position: relative; }
.story-frame { aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: linear-gradient(135deg, #061440, #0d2060, #1a3a8a); display: flex; align-items: center; justify-content: center; position: relative; }
.story-frame-text { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: rgba(255,255,255,0.08); text-align: center; letter-spacing: 6px; line-height: 1.1; }
.story-corner-tl, .story-corner-br { position: absolute; width: 40px; height: 40px; }
.story-corner-tl { top: 16px; left: 16px; border-top: 2.5px solid var(--gold); border-left: 2.5px solid var(--gold); border-radius: 4px 0 0 0; }
.story-corner-br { bottom: 16px; right: 16px; border-bottom: 2.5px solid var(--gold); border-right: 2.5px solid var(--gold); border-radius: 0 0 4px 0; }
.story-year-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--navy); border-radius: 14px; padding: 20px 24px; text-align: center; box-shadow: 0 8px 28px rgba(196,154,46,0.35); }
.syb-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; line-height: 1; display: block; }
.syb-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.story-timeline { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.tl-year { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--navy); line-height: 1; flex-shrink: 0; width: 56px; }
.tl-title { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.tl-text { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

#mission-vision { padding: 100px 60px; background: var(--off-white); }
.mv-inner { max-width: 1380px; margin: 0 auto; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 60px; }
.mv-card { border-radius: 20px; padding: 52px 48px; position: relative; overflow: hidden; }
.mv-card-mission { background: var(--navy); }
.mv-card-vision { background: var(--white); border: 2px solid var(--navy-light); }
.mv-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(196,154,46,0.12) 0%, transparent 65%); }
.mv-icon { font-size: 42px; margin-bottom: 24px; display: block; position: relative; z-index: 1; }
.mv-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; position: relative; z-index: 1; }
.mv-card-mission .mv-label { color: var(--gold-light); }
.mv-card-vision .mv-label { color: var(--gold); }
.mv-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; line-height: 1.1; margin-bottom: 20px; position: relative; z-index: 1; }
.mv-card-mission .mv-title { color: var(--white); }
.mv-card-vision .mv-title { color: var(--text-dark); }
.mv-text { font-size: 15px; line-height: 1.85; position: relative; z-index: 1; }
.mv-card-mission .mv-text { color: rgba(255,255,255,0.65); }
.mv-card-vision .mv-text { color: var(--text-soft); }

#values { padding: 100px 60px; background: var(--white); }
.values-inner { max-width: 1380px; margin: 0 auto; }
.values-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.values-header .section-eyebrow { justify-content: center; }
.values-header .section-eyebrow::before { display: none; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; text-align: center; transition: all 0.35s; cursor: default; position: relative; overflow: hidden; }
.value-card:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.value-card:hover .value-title { color: var(--white); }
.value-card:hover .value-text { color: rgba(255,255,255,0.6); }
.value-card:hover .value-icon-wrap { background: rgba(255,255,255,0.1); }
.value-num { font-family: 'Bebas Neue', sans-serif; font-size: 60px; color: rgba(13,32,96,0.05); position: absolute; top: 10px; right: 16px; line-height: 1; transition: color 0.3s; }
.value-card:hover .value-num { color: rgba(255,255,255,0.04); }
.value-icon-wrap { width: 64px; height: 64px; border-radius: 16px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 24px; transition: background 0.3s; }
.value-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; transition: color 0.3s; }
.value-text { font-size: 13px; color: var(--text-soft); line-height: 1.75; transition: color 0.3s; }

#team { padding: 100px 60px; background: var(--off-white); }
.team-inner { max-width: 1380px; margin: 0 auto; }
.team-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); transition: all 0.35s; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--navy-light); }
.team-photo { aspect-ratio: 3/4; position: relative; overflow: hidden; }
.team-photo-bg { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 24px 20px; transition: transform 0.4s; background-size: cover; background-position: center top; }
.team-card:hover .team-photo-bg { transform: scale(1.04); }
.tp1 { background: linear-gradient(160deg, #061440, #0d2060, #1a3a8a); }
.tp2 { background: linear-gradient(160deg, #0d1020, #1a2050, #0a1535); }
.tp3 { background: linear-gradient(160deg, #100614, #200a30, #150520); }
.tp4 { background: linear-gradient(160deg, #061428, #0a2040, #071535); }
.team-photo-initials { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(196,154,46,0.5); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--gold-light); margin-bottom: 16px; }
.team-photo-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: var(--white); text-align: center; margin-bottom: 4px; }
.team-photo-role { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; text-align: center; }
.team-body { padding: 20px 22px; }
.team-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--text-soft); line-height: 1.7; }
.team-social { display: flex; gap: 8px; margin-top: 14px; }
.ts-btn { width: 30px; height: 30px; border-radius: 6px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--text-soft); text-decoration: none; transition: all 0.2s; font-weight: 700; }
.ts-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

#office { padding: 100px 60px; background: var(--white); }
.office-inner { max-width: 1380px; margin: 0 auto; }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: start; }
.office-detail { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.office-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.office-detail-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 5px; }
.office-detail-value { font-size: 15px; color: var(--text-dark); font-family: 'Playfair Display', serif; }
.office-detail-value a { color: var(--navy); text-decoration: none; }
.office-detail-value a:hover { color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item-large { grid-column: 1 / -1; aspect-ratio: 16/7; }
.gallery-bg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; }
.gb1 { background: linear-gradient(135deg, #061440, #0d2060, #1a3a8a); }
.gb2 { background: linear-gradient(135deg, #0a1020, #1a2040, #0a1830); }
.gb3 { background: linear-gradient(135deg, #100820, #201040, #100830); }
.gb4 { background: linear-gradient(135deg, #082028, #103040, #0a2030); }
.gb5 { background: linear-gradient(135deg, #040a20, #0a1535, #061040); }
.gallery-label { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: rgba(255,255,255,0.15); letter-spacing: 3px; }
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }

/* ── CONTACT PAGE ── */
#contact { padding: 100px 60px; background: var(--white); }
.contact-inner { max-width: 1380px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; align-items: start; }
.contact-detail { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-icon-wrap { width: 44px; height: 44px; border-radius: 10px; background: var(--navy-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-label-txt { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 5px; }
.contact-value-txt { font-size: 15px; color: var(--text-dark); font-family: 'Playfair Display', serif; }
.contact-value-txt a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.contact-value-txt a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--off-white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.contact-form-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 600; color: var(--text-dark); margin-bottom: 28px; }
.department-contacts { margin-top: 60px; padding-top: 48px; border-top: 1px solid var(--border); }
.dept-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.dept-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px; }
.dept-name { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-soft); font-weight: 600; margin-bottom: 8px; }
.dept-label { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.dept-contact { display: flex; flex-direction: column; gap: 6px; }
.dept-contact a { color: var(--navy); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.dept-contact a:hover { color: var(--gold); }

/* CF7 custom styling */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--text-dark); padding: 13px 16px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.25s;
  width: 100%;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,32,96,0.07); }
.wpcf7 textarea { resize: vertical; min-height: 110px; }
.wpcf7 input[type="submit"] {
  background: var(--navy); color: var(--white);
  padding: 13px 32px; font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; border-radius: 8px;
  transition: all 0.25s; width: 100%; font-family: 'DM Sans', sans-serif;
}
.wpcf7 input[type="submit"]:hover { background: var(--navy-mid); }
.wpcf7-response-output { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 13px; }

/* ── SUBMIT FILM PAGE ── */
.submit-inner { max-width: 960px; margin: 0 auto; padding: 80px 60px; }
.submit-section { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; margin-bottom: 24px; }
.submit-section-header { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.submit-section-num { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 3px; color: var(--gold); margin-bottom: 8px; }
.submit-section-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text-dark); }
.submit-checklist { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.checklist-item { display: flex; align-items: center; gap: 10px; padding: 10px 18px; background: var(--navy-pale); border: 1px solid var(--navy-light); border-radius: 8px; font-size: 12px; font-weight: 600; color: var(--navy); }
.submit-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); font-weight: 700; }
.form-input, .form-textarea, .form-select {
  background: var(--off-white); border: 1.5px solid var(--border);
  color: var(--text-dark); padding: 13px 16px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  outline: none; transition: border-color 0.25s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(13,32,96,0.07); }
.form-textarea { resize: vertical; min-height: 110px; }

/* ── PARTNERS ── */
#partners { padding: 80px 60px; background: var(--off-white); border-top: 1px solid var(--border); }
.partners-inner { max-width: 1380px; margin: 0 auto; }
.partners-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }
.partners-header .section-eyebrow { justify-content: center; }
.partners-header .section-eyebrow::before { display: none; }
.partner-category { margin-bottom: 40px; }
.partner-cat-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-soft); font-weight: 600; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.partner-logos { display: flex; flex-wrap: wrap; gap: 12px; }
.partner-logo-chip { padding: 10px 22px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-soft); font-weight: 600; transition: all 0.25px; cursor: pointer; }
.partner-logo-chip:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-pale); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 72px 60px 36px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; max-width: 1380px; margin: 0 auto 56px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-mark { width: 38px; height: 38px; display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 7px 6px; }
.footer-logo-mark .logo-bar-top,
.footer-logo-mark .logo-bar-bot { background: var(--gold); }
.footer-brand-txt { font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600; letter-spacing: 1px; color: var(--white); display: block; }
.footer-sub-txt { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-chip { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 12px; text-decoration: none; font-weight: 600; transition: all 0.25s; }
.social-chip:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h4 { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { max-width: 1380px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }
.rd5 { transition-delay: 0.40s; }

/* ── ADMIN BAR OFFSET ── */
.admin-bar nav#navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav#navbar { top: 46px; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE SLIDER SYSTEM
   Converts any grid with .mobile-slider into a horizontal
   swipeable carousel below the tablet breakpoint, with native
   scroll-snap (no JS required).
════════════════════════════════════════════════════════════ */
.mobile-slider-wrap { position: relative; }

@media (max-width: 900px) {
  .mobile-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    grid-template-columns: none !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px !important;
    padding-bottom: 4px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .mobile-slider::-webkit-scrollbar { display: none; }
  .mobile-slider > * {
    scroll-snap-align: start;
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .mobile-slider {
    grid-auto-columns: 82%;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Slider edge fade hint (visual cue more content exists) */
@media (max-width: 900px) {
  .mobile-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 4px;
    width: 32px;
    background: linear-gradient(to right, transparent, var(--off-white) 85%);
    pointer-events: none;
  }
  #featured .mobile-slider-wrap::after,
  #films-section .mobile-slider-wrap::after,
  #news .mobile-slider-wrap::after,
  section[style*="var(--white)"] .mobile-slider-wrap::after {
    background: linear-gradient(to right, transparent, var(--white) 85%);
  }
}
@media (min-width: 901px) {
  .mobile-slider-wrap::after { content: none; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE 2-COLUMN / 3-COLUMN UTILITY GRIDS
   Used for inline-styled split sections (Featured, About,
   Why Panadia, Film Hero, Sidebar layouts, etc.)
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .film-content-sidebar-grid { grid-template-columns: 1fr !important; }
  .film-content-sidebar-grid aside { position: static !important; }
}
@media (max-width: 900px) {
  .responsive-2col,
  .responsive-3col,
  .film-hero-grid,
  .story-inner, .featured-wrap, .about-inner,
  .contact-grid, .mv-grid, .office-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .film-hero-grid > div:first-child {
    max-width: 240px;
    margin: 0 auto;
  }
}
@media (max-width: 700px) {
  .responsive-2col-form { grid-template-columns: 1fr !important; }
}

/* ════════════════════════════════════════════════════════════
   GLOBAL SECTION SPACING — reduce left/right padding on mobile
════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .films-grid, .services-grid, .related-films-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .news-featured-article { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .films-grid-archive { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  /* Navigation */
  nav#navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--white); padding: 16px 20px;
    box-shadow: var(--shadow-lg); z-index: 999;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-links.open > li > a { padding: 12px 16px; }
  .nav-links.open .dropdown {
    position: static; opacity: 1; pointer-events: auto;
    transform: none; box-shadow: none; border: none;
    margin-left: 12px; padding: 0; display: none;
  }
  .nav-links.open li.dropdown-open .dropdown { display: block; }

  /* Section horizontal padding: 60px → 20px */
  #hero, #featured, #films-section, #upcoming, #about, #services,
  #cta-banner, #news, #partners, #contact, #stats, #trust-strip,
  #why-panadia, #story, #mission-vision, #values, #team, #office,
  .page-hero-inner, .article-layout, .article-hero-inner,
  .related-articles, .submit-inner, footer,
  section[aria-label] {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Hero */
  .hero-inner { padding: 40px 20px !important; gap: 32px; }
  .hero-stats-strip { flex-wrap: wrap; gap: 16px; padding: 14px 16px; }
  .hs-divider { display: none; }
  .hs-item { flex: 1 1 40%; }

  /* Grids → 2 columns */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .films-grid, .services-grid, .related-films-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .films-grid-archive { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .films-filter-inner { padding: 14px 20px; flex-wrap: wrap; }
  .films-filter-bar { position: relative; top: 0; }

  /* CTA banner */
  .cta-inner,
  section[aria-label] > div > div[style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
    padding: 36px 24px !important;
    gap: 28px !important;
    text-align: center;
  }
  .cta-actions { align-items: stretch !important; }
  .cta-actions a { width: 100%; }

  /* Forms */
  .dept-grid { grid-template-columns: 1fr; }
  .submit-form-grid { grid-template-columns: 1fr; }
  .media-kit-section { grid-template-columns: 1fr; text-align: center; }
  .media-kit-section > a { margin: 0 auto; }

  /* Page hero stats */
  .page-hero-stats { gap: 28px !important; }
  .ph-stat-num { font-size: 36px !important; }

  /* News filters */
  .news-filters { flex-direction: column; align-items: stretch !important; }
  .news-search-wrap { margin-left: 0 !important; width: 100%; }
  .news-search { width: 100% !important; }
}

@media (max-width: 600px) {
  /* Typography scaling */
  .hero-title { font-size: clamp(30px, 9vw, 46px) !important; }
  .hero-tagline { font-size: 14px; }
  .section-heading { font-size: clamp(26px, 7vw, 36px) !important; }
  .page-hero-title { font-size: clamp(32px, 10vw, 48px) !important; }
  .cta-title { font-size: clamp(24px, 7vw, 34px) !important; }
  .featured-title { font-size: clamp(28px, 8vw, 40px) !important; }

  /* Section padding tighter */
  #hero, #featured, #films-section, #upcoming, #about, #services,
  #cta-banner, #news, #partners, #contact, #stats, #trust-strip,
  #why-panadia, #story, #mission-vision, #values, #team, #office,
  .page-hero-inner, .article-layout, .article-hero-inner,
  .related-articles, .submit-inner, footer,
  section[aria-label] {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .page-hero-inner { padding-top: 40px !important; padding-bottom: 60px !important; }

  /* Grids → single column */
  .services-grid, .team-grid, .values-grid,
  .related-films-grid, .stats-inner, .trust-grid {
    grid-template-columns: 1fr !important;
  }
  .films-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .films-grid-archive { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Cards: tighter padding */
  .film-card-body, .service-card, .value-card, .news-body,
  .team-body, .upcoming-body, .dept-card {
    padding: 14px 16px !important;
  }
  .film-archive-body { padding: 12px 14px 14px !important; }
  .film-archive-title { font-size: 14px !important; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }

  /* Modal */
  .film-modal-inner { grid-template-columns: 1fr; }
  .film-modal-poster { border-radius: 20px 20px 0 0; max-height: 240px; }
  .film-modal-content { padding: 24px !important; }

  /* Stats strip */
  .stat-num { font-size: 44px !important; }

  /* Mission/Vision and office/contact cards */
  .mv-card, .submit-section { padding: 28px 20px !important; }

  /* Newsletter & media kit */
  .newsletter-section, .media-kit-section { padding: 32px 20px !important; }
  .nl-title, .mk-title { font-size: 22px !important; }

  /* Buttons stack full width in groups */
  .hero-btns, .featured-actions { flex-direction: column; align-items: stretch; }
  .hero-btns a, .featured-actions a { text-align: center; }
}

@media (max-width: 420px) {
  .films-grid, .films-grid-archive { grid-template-columns: 1fr; }
  .hero-stats-strip { gap: 12px; }
  .hs-item { flex: 1 1 100%; }
}

/* ════════════════════════════════════════════════════════════
   FILM DETAIL SINGLE PAGE — responsive
════════════════════════════════════════════════════════════ */
.film-detail-hero { position: relative; }
.film-detail-hero .hero-content { position: relative; z-index: 2; }

@media (max-width: 900px) {
  .film-hero-grid {
    padding: 40px 20px !important;
  }
  .film-meta-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .film-meta-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .film-hero-grid h1 { font-size: clamp(28px, 9vw, 44px) !important; }
}

/* ════════════════════════════════════════════
   SVG ICON SYSTEM
════════════════════════════════════════════ */
.panadia-icon {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	flex-shrink: 0;
	line-height: 1;
}
.panadia-icon svg { display: block; }

/* Spinning loader animation */
@keyframes panadia-spin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}
.spin-icon { animation: panadia-spin 1s linear infinite; }

/* Replace text-based nav toggle with SVG */
.nav-toggle span { transition: all 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════
   FILMS ARCHIVE PAGE
════════════════════════════════════════════ */

/* Hero strip decoration */
.films-archive-hero { padding-bottom: 0 !important; overflow: visible !important; }
.films-hero-strip {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 40px;
	display: flex;
	overflow: hidden;
	opacity: 0.06;
}
.fhs-frame {
	flex: 0 0 40px;
	height: 40px;
	border: 1px solid rgba(255,255,255,0.7);
	margin: 0 1px;
	flex-shrink: 0;
}

/* Hero stats */
.films-hero-stats {
	display: flex;
	align-items: center;
	gap: 0;
	margin-top: 48px;
}
.fhs-stat { padding: 0 40px 0 0; }
.fhs-stat:first-child { padding-left: 0; }
.fhs-num {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 44px;
	color: var(--gold-light);
	line-height: 1;
	display: block;
}
.fhs-label {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.45);
	margin-top: 4px;
	display: block;
}
.fhs-divider {
	width: 1px;
	height: 44px;
	background: rgba(255,255,255,0.15);
	margin-right: 40px;
	flex-shrink: 0;
}

/* Filter bar */
.films-filter-bar {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 76px;
	z-index: 100;
	box-shadow: var(--shadow-sm);
}
.films-filter-inner {
	max-width: 1380px;
	margin: 0 auto;
	padding: 16px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.films-filter-left {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.filter-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--text-soft);
	flex-shrink: 0;
}
.filter-select-wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.filter-select-wrap .panadia-icon {
	position: absolute;
	right: 12px;
	pointer-events: none;
}
.filter-select {
	padding: 9px 36px 9px 14px;
	background: var(--off-white);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: var(--text-dark);
	cursor: pointer;
	outline: none;
	transition: border-color 0.2s;
	appearance: none;
	-webkit-appearance: none;
	min-width: 140px;
}
.filter-select:focus { border-color: var(--navy); }
.filter-results-count {
	font-size: 13px;
	color: var(--text-soft);
	flex-shrink: 0;
	white-space: nowrap;
}
.filter-results-count span {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 22px;
	color: var(--navy);
	margin-right: 4px;
}

/* Films archive grid */
.films-grid-archive {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

/* Film archive card */
.film-archive-card {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--border);
	transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
	display: flex;
	flex-direction: column;
}
.film-archive-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 32px 64px rgba(13,32,96,0.16);
	border-color: var(--navy-light);
}

/* Poster area */
.film-archive-poster {
	position: relative;
	aspect-ratio: 2/3;
	display: block;
	overflow: hidden;
	text-decoration: none;
}
.film-archive-poster-bg {
	width: 100%;
	height: 100%;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 20px;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}
.film-archive-card:hover .film-archive-poster-bg { transform: scale(1.06); }

/* Fallback text when no image */
.film-archive-num {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 64px;
	color: rgba(255,255,255,0.08);
	line-height: 1;
	position: absolute;
	top: 12px;
	left: 14px;
}
.film-archive-title-overlay {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 700;
	color: rgba(255,255,255,0.85);
	text-align: center;
	line-height: 1.3;
	padding: 0 8px;
	position: relative;
	z-index: 1;
}

/* Status badge */
.film-archive-status-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 4px 12px;
	border-radius: 100px;
	font-size: 9px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 700;
	z-index: 2;
	backdrop-filter: blur(4px);
}

/* Hover overlay */
.film-archive-hover-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(13,32,96,0.97) 0%,
		rgba(13,32,96,0.75) 40%,
		rgba(13,32,96,0.2) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 24px;
	opacity: 0;
	transition: opacity 0.35s;
	z-index: 3;
}
.film-archive-card:hover .film-archive-hover-overlay { opacity: 1; }

.film-archive-hover-content { width: 100%; }
.film-archive-synopsis {
	font-size: 12px;
	color: rgba(255,255,255,0.75);
	line-height: 1.7;
	margin-bottom: 16px;
}
.film-archive-hover-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}
.film-archive-view-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--gold);
	color: var(--navy);
	padding: 9px 18px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
	flex: 1;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
}
.film-archive-view-btn:hover { background: var(--gold-light); }
.film-archive-trailer-btn {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(255,255,255,0.15);
	border: 1px solid rgba(255,255,255,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	text-decoration: none;
	transition: background 0.2s;
	color: var(--white);
}
.film-archive-trailer-btn:hover { background: rgba(255,255,255,0.25); }

/* Card body */
.film-archive-body {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.film-archive-meta-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}
.film-archive-genre {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
}
.film-archive-year {
	font-family: 'Bebas Neue', sans-serif;
	font-size: 18px;
	color: var(--text-soft);
}
.film-archive-title {
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 12px;
}
.film-archive-title a {
	text-decoration: none;
	color: inherit;
	transition: color 0.2s;
}
.film-archive-title a:hover { color: var(--navy); }
.film-archive-details {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}
.film-archive-detail-item {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	color: var(--text-soft);
	letter-spacing: 0.3px;
}
.film-archive-cta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--navy);
	text-decoration: none;
	letter-spacing: 0.3px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--border);
	transition: gap 0.2s, color 0.2s;
}
.film-archive-cta:hover { gap: 14px; color: var(--gold); }

/* Admin bar offset for sticky filter bar */
.admin-bar .films-filter-bar { top: 108px; }
@media screen and (max-width: 782px) {
	.admin-bar .films-filter-bar { top: 122px; }
}

/* ════════════════════════════════════════════
   SVG ICON REPLACEMENTS — Global Buttons & UI
════════════════════════════════════════════ */

/* btn-text-navy arrow becomes SVG */
.btn-text-navy::after { content: none !important; }
.btn-text-navy .panadia-icon { transition: transform 0.2s; }
.btn-text-navy:hover .panadia-icon { transform: translateX(5px); }

/* News read-more arrow */
.news-read-more::after { content: none !important; }
.news-read-more .panadia-icon { transition: transform 0.2s; }
.news-read-more:hover .panadia-icon { transform: translateX(5px); }

/* Section eyebrow dot → icon handled inline */

/* Social chips use SVG icons */
.social-chip .panadia-icon { line-height: 1; }

/* Filter select chevron */
.filter-select-wrap .panadia-icon { right: 10px; }

