/* ==========================================================================
   Bilal Amir Films — cinematic portfolio theme
   ========================================================================== */

:root {
  --maroon:       #24050a;
  --maroon-deep:  #150307;
  --maroon-soft:  #3a0c14;
  --black:        #0a0503;
  --gold:         #C6AE74;
  --gold-light:   #F0E4B8;
  --gold-dim:     #926429;
  --cream:        #F4EEE0;
  --cream-dim:    rgba(244, 238, 224, .68);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --container-w:  1240px;
  --header-h:     112px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--maroon);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--cream);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }

.font-display { font-family: var(--font-display); }
.font-script { font-family: var(--font-script); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--gold); color: var(--black);
  padding: .75rem 1.25rem; z-index: 1000; transition: top .2s ease;
  font-family: var(--font-body); font-weight: 600; letter-spacing: .05em;
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout ---------- */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 800px; }
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 64px 0; }
@media (max-width: 780px) {
  .section { padding: 72px 0; }
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
@media (max-width: 980px) {
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Type helpers ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  color: var(--gold-light); font-family: var(--font-body);
  font-size: .78rem; letter-spacing: .32em; text-transform: uppercase;
  margin: 0 0 18px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 32px; height: 1px; background: var(--gold-dim);
}
.eyebrow-left { justify-content: flex-start; }
.eyebrow-left::before { display: none; }
.eyebrow-light { color: var(--gold-light); text-shadow: 0 2px 12px rgba(0,0,0,.5); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
.section-head p { color: var(--cream-dim); font-size: 1.05rem; }
.section-head-left { text-align: left; margin: 0 0 48px; }
.section-head-left .eyebrow { justify-content: flex-start; }

.lead { font-size: 1.15rem; color: var(--cream-dim); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border: 1px solid var(--gold);
  font-family: var(--font-body); font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 500; color: var(--cream);
  background: transparent; transition: all .3s ease; white-space: nowrap;
}
.btn-sm { padding: 11px 24px; font-size: .72rem; }
.btn:hover { background: var(--gold); color: var(--black); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold-light); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-ghost { border-color: rgba(244,238,224,.35); }
.btn-ghost:hover { border-color: var(--gold); background: transparent; color: var(--gold-light); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-light); border-bottom: 1px solid transparent;
  transition: gap .25s ease, border-color .25s ease;
}
.link-arrow:hover { gap: 14px; border-color: var(--gold-light); }
.link-arrow svg { width: 14px; height: 14px; }

.btn-play {
  width: 84px; height: 84px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(10,7,5,.45); border: 1.5px solid var(--gold);
  color: var(--gold-light); backdrop-filter: blur(4px);
  transition: transform .3s ease, background .3s ease;
}
.btn-play svg { transform: translateX(2px); }
.btn-play:hover { transform: scale(1.08); background: var(--gold); color: var(--black); }
.btn-play-sm { width: 60px; height: 60px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: linear-gradient(180deg, rgba(10,5,3,.6) 0%, rgba(10,5,3,0) 100%);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, padding .35s ease;
  padding: 14px 0;
}
.site-header.is-scrolled {
  background: rgba(10, 7, 5, .92);
  border-bottom-color: rgba(198,174,116,.25);
  backdrop-filter: blur(10px);
  padding: 8px 0;
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; }
.brand-logo { height: 80px; width: auto; display: block; }
.brand-logo-footer { height: 96px; }
@media (max-width: 560px) {
  .brand-logo { height: 58px; }
}

.primary-nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 38px; }
.nav-link {
  position: relative; font-size: .92rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream-dim); padding: 6px 0;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold); transition: right .3s ease;
}
.nav-link:hover, .nav-link.is-active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 22px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px; background: none; border: none; padding: 0;
}
.nav-toggle span { display: block; width: 100%; height: 1.5px; background: var(--gold-light); transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); height: 100vh;
  background: linear-gradient(160deg, var(--black), var(--maroon-deep));
  border-left: 1px solid rgba(198,174,116,.25);
  z-index: 199; transform: translateX(100%); transition: transform .4s ease;
  display: flex; flex-direction: column; justify-content: center; gap: 40px;
  padding: 40px; text-align: center;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav .nav-list { flex-direction: column; gap: 26px; }
.mobile-nav .nav-link { font-size: 1rem; }
.mobile-nav .btn { align-self: center; }

@media (max-width: 980px) {
  .primary-nav, .header-actions .btn-outline-gold { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Placeholder imagery ---------- */
.ph {
  position: relative; display: block; width: 100%; overflow: hidden;
  background: linear-gradient(150deg, var(--maroon-deep) 0%, var(--black) 78%);
  isolation: isolate;
}
.ph::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(198,174,116,.07) 0 2px, transparent 2px 26px);
  opacity: .6;
}
.ph::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(240,228,184,.14) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: ph-sheen 7s ease-in-out infinite;
}
@keyframes ph-sheen { 0%,60% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.ph-frame {
  position: absolute; inset: 14px; border: 1px solid rgba(240,228,184,.22); pointer-events: none; z-index: 1;
}
.ph-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(240,228,184,.4); z-index: 1;
}
.ph-label {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(244,238,224,.4); z-index: 1;
}
.ph-b { background: linear-gradient(150deg, #350810 0%, var(--black) 80%); }

.photo { position: relative; display: block; width: 100%; overflow: hidden; background: var(--black); }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.photo:hover img { transform: scale(1.04); }
.photo-frame { position: absolute; inset: 14px; border: 1px solid rgba(240,228,184,.3); pointer-events: none; z-index: 1; }

.bg-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ph-c { background: radial-gradient(circle at 30% 20%, var(--maroon-soft), var(--black) 75%); }
.ph-d { background: linear-gradient(160deg, var(--black) 0%, var(--maroon-deep) 100%); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: 90px;
  perspective: 1600px;
}
/* Hero image slider */
.hero-slides {
  position: absolute; top: -3%; left: -3%; right: -3%; bottom: -3%; z-index: 0;
  background: var(--black); overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; z-index: 0;
  transform: scale(1.16) translateY(3%); transform-origin: 50% 50%;
  filter: blur(10px);
  transition: opacity 1.15s cubic-bezier(.45,0,.2,1),
              transform 1.75s cubic-bezier(.19,1,.22,1),
              filter 1.4s cubic-bezier(.45,0,.2,1);
}
.hero-slide.is-active { opacity: 1; z-index: 1; transform: scale(1) translateY(0); filter: blur(0); }
.hero-slide .bg-photo { transform: scale(1.08); }
.hero-slide .bg-photo.kenburns { transform: scale(1.08); }
.hero-slide .bg-photo.kb-play { animation: hero-kenburns 6.5s ease-out forwards; }
@keyframes hero-kenburns {
  0%   { transform: scale(1.1) translate(0, 0); }
  100% { transform: scale(1.01) translate(-0.8%, -1.4%); }
}

.hero-watermark {
  position: absolute; z-index: 1; top: 132px; right: 44px;
  width: 92px; height: auto; opacity: .5;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,.5));
  pointer-events: none;
  will-change: transform; transition: transform .2s ease-out;
}
@media (max-width: 780px) { .hero-watermark { width: 60px; top: 96px; right: 22px; opacity: .4; } }

[data-hero-parallax] { will-change: transform; transition: transform .2s ease-out; }
@media (prefers-reduced-motion: reduce) {
  .hero-slides, .hero-watermark, [data-hero-parallax] { transition: none !important; transform: none !important; }
  .hero-slide { transition: opacity 1.2s ease; transform: none; filter: none; }
  .hero-progress-bar.is-running { animation: none; width: 100%; }
}

.hero-arrow {
  position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(10,5,3,.4); border: 1px solid rgba(240,228,184,.4); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.hero-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-50%) scale(1.08); box-shadow: 0 6px 24px rgba(198,174,116,.35); }
.hero-arrow.prev { left: 28px; }
.hero-arrow.prev svg { transform: rotate(180deg); }
.hero-arrow.next { right: 28px; }
@media (max-width: 980px) { .hero-arrow { width: 46px; height: 46px; } .hero-arrow.prev { left: 14px; } .hero-arrow.next { right: 14px; } }
@media (max-width: 620px) { .hero-arrow { display: none; } }

.hero-dots {
  position: absolute; z-index: 3; left: 50%; bottom: 40px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 14px;
}
.hero-dot {
  width: 11px; height: 11px; border-radius: 50%; padding: 0;
  background: rgba(244,238,224,.3); border: 1px solid rgba(244,238,224,.45);
  transition: background .3s ease, transform .3s ease, width .3s ease, box-shadow .3s ease;
}
.hero-dot:hover { background: rgba(244,238,224,.65); transform: scale(1.15); }
.hero-dot.is-active {
  width: 34px; border-radius: 6px; background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 14px rgba(198,174,116,.6);
}
@media (max-width: 780px) { .hero-dots { bottom: 26px; gap: 9px; } .hero-dot { width: 8px; height: 8px; } .hero-dot.is-active { width: 24px; } }

.hero-counter {
  position: absolute; z-index: 3; left: 28px; bottom: 40px;
  display: flex; align-items: center; gap: 12px;
  color: var(--cream-dim); font-size: .78rem; letter-spacing: .1em; font-variant-numeric: tabular-nums;
}
.hero-counter-current { color: var(--gold-light); }
.hero-progress {
  width: 84px; height: 2px; background: rgba(244,238,224,.22); border-radius: 2px; overflow: hidden;
}
.hero-progress-bar { width: 0%; height: 100%; background: var(--gold); border-radius: 2px; }
.hero-progress-bar.is-running { animation: hero-progress-fill 4.2s linear forwards; }
@keyframes hero-progress-fill { from { width: 0%; } to { width: 100%; } }
@media (max-width: 980px) { .hero-counter { display: none; } }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(10,5,3,.92) 0%, rgba(10,5,3,.4) 46%, rgba(36,5,10,.4) 100%),
              linear-gradient(180deg, rgba(10,5,3,.55) 0%, rgba(10,5,3,0) 22%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-text-stack { position: relative; }
.hero-text {
  position: absolute; top: 0; left: 0; width: 100%;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  /* Fades OUT fast with no delay so it's fully gone before the next slide's
     text starts appearing — text (unlike the photos) reads as clutter if two
     headings overlap mid-crossfade. */
  transition: opacity .35s ease, transform .4s ease;
}
.hero-text.is-active {
  position: relative; opacity: 1; transform: translateY(0); pointer-events: auto;
  transition: opacity .6s ease .35s, transform .7s cubic-bezier(.22,1,.36,1) .35s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-text { transition: opacity .4s ease; transform: none; }
  .hero-text.is-active { transition: opacity .4s ease; transform: none; }
}
.hero-eyebrow { color: var(--gold-light); letter-spacing: .3em; text-transform: uppercase; font-size: .8rem; margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem); letter-spacing: .02em; color: var(--cream);
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero h1 span { color: var(--gold-light); }
.hero-sub { max-width: 520px; color: var(--cream-dim); font-size: 1.05rem; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-actions .btn-gold { transition: background .25s ease, border-color .25s ease, color .25s ease, opacity .15s ease; }
.hero-actions .btn-gold.is-swapping { opacity: 0; }
.scroll-cue {
  position: absolute; right: 28px; bottom: 34px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--cream-dim); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-cue::after {
  content: ''; width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent);
  animation: scroll-cue 2.2s ease-in-out infinite;
}
@keyframes scroll-cue { 0% { opacity: 0; transform: scaleY(.3); transform-origin: top; } 40% { opacity: 1; } 100% { opacity: 0; transform: scaleY(1); transform-origin: top; } }
@media (max-width: 780px) { .scroll-cue { display: none; } }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; min-height: 52vh; display: flex; align-items: center; overflow: hidden; padding-top: var(--header-h); }
.page-hero-sm { min-height: 42vh; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(150deg, var(--maroon-deep), var(--black) 85%); }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(198,174,116,.06) 0 2px, transparent 2px 26px);
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; width: 100%; box-sizing: border-box; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.page-hero-sub { color: var(--cream-dim); max-width: 640px; margin: 0 auto; }

/* ---------- Stories ---------- */
.story-card { display: block; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.story-card:hover { transform: translateY(-8px); }
.story-card .ph, .story-card .photo { border-radius: 2px; margin-bottom: 22px; transition: box-shadow .5s ease; }
.story-card:hover .photo, .story-card:hover .ph { box-shadow: 0 24px 48px -16px rgba(0,0,0,.55); }
.story-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.story-card p { color: var(--cream-dim); font-size: .95rem; margin-bottom: 14px; }
.story-tag { color: var(--gold); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 10px; display: block; }

.carousel-nav { display: flex; justify-content: center; gap: 16px; margin-top: 50px; }
.carousel-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(240,228,184,.35);
  background: transparent; color: var(--gold-light); display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease;
}
.carousel-nav button:hover { background: var(--gold); color: var(--black); }
.carousel-nav button.next svg { transform: rotate(0deg); }
.carousel-nav button.prev svg { transform: rotate(180deg); }

/* ---------- Stats ---------- */
.stats-band { position: relative; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; }
.stats-overlay { position: absolute; inset: 0; background: rgba(10,7,5,.72); }
.stats-inner { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-light); }
.stat-label { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream-dim); }
@media (max-width: 780px) { .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px 0; } }

/* ---------- Featured film ---------- */
.film-feature { text-align: center; }
.film-frame { position: relative; max-width: 980px; margin: 0 auto; }
.film-frame .ph { border: 1px solid rgba(198,174,116,.3); }
.film-frame-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.film-caption { margin-top: 32px; }

/* ---------- Quote ---------- */
.quote-section { position: relative; padding: 160px 0; overflow: hidden; }
.quote-bg { position: absolute; inset: 0; }
.quote-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,7,5,.55), rgba(10,7,5,.85)); }
.quote-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.quote-mark { color: var(--gold); opacity: .7; margin-bottom: 18px; display: flex; justify-content: center; }
.quote-inner blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.3rem); margin: 0 0 24px; color: var(--cream);
}
.quote-sign { font-family: var(--font-script); font-size: 1.8rem; color: var(--gold-light); }

/* ---------- Company intro ---------- */
.intro-section { text-align: center; }
.intro-lead {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem); line-height: 1.55; color: var(--cream);
  max-width: 840px; margin: 0 auto;
}
.intro-lead strong { color: var(--gold-light); font-weight: 600; font-style: normal; }
.intro-facts {
  display: flex; justify-content: center; gap: 20px 44px; flex-wrap: wrap;
  margin-top: 46px;
}
.intro-fact {
  display: flex; align-items: center; gap: 10px;
  font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light);
}
.intro-fact::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
@media (max-width: 980px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.testimonial-card {
  background: linear-gradient(165deg, rgba(198,174,116,.06), transparent 60%);
  border: 1px solid rgba(198,174,116,.16); padding: 42px 34px; text-align: center;
  transition: transform .5s cubic-bezier(.16,1,.3,1), border-color .4s ease, background .4s ease;
}
.testimonial-card:hover { transform: translateY(-8px); border-color: rgba(198,174,116,.4); background: linear-gradient(165deg, rgba(198,174,116,.1), transparent 65%); }
.testimonial-quote-mark { color: var(--gold); opacity: .65; margin-bottom: 20px; display: flex; justify-content: center; }
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; color: var(--gold); }
.testimonial-stars svg { width: 14px; height: 14px; fill: currentColor; }
.testimonial-text {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.65;
  color: var(--cream); margin-bottom: 28px;
}
.testimonial-author { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); }
.testimonial-role { font-size: .78rem; color: var(--cream-dim); margin-top: 5px; }

/* ---------- Styles grid ---------- */
.style-card { position: relative; overflow: hidden; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.style-card:hover { transform: translateY(-6px); }
.style-card .ph, .style-card .photo { aspect-ratio: 1/1; transition: transform .5s ease; }
.style-card:hover .ph, .style-card:hover .photo img { transform: scale(1.08); }
.style-card-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px; background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .04em; color: var(--cream);
}

/* ---------- Gallery ---------- */
.gallery-collage { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }
.gallery-collage .stack { display: grid; gap: 20px; }
.gallery-collage .ph { height: 100%; }
@media (max-width: 780px) { .gallery-collage { grid-template-columns: 1fr; } .gallery-collage .stack { grid-template-columns: 1fr 1fr; } }

.masonry { columns: 3 220px; column-gap: 22px; }
.masonry figure { margin: 0 0 22px; break-inside: avoid; }
.masonry .ph { border: 1px solid rgba(198,174,116,.15); }
@media (max-width: 780px) { .masonry { columns: 2 180px; } }

/* Uniform, evenly-aligned photo grid (story/film/journal "Moments" galleries) —
   unlike .masonry, every tile is the same height with equal gaps in both directions. */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-grid figure { margin: 0; }
.gallery-grid .photo, .gallery-grid .ph { border: 1px solid rgba(198,174,116,.15); }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 14px; } }

/* ---------- About ---------- */
.about-portrait .ph { aspect-ratio: 4/5; }
.about-copy p { color: var(--cream-dim); }
.about-stats { display: flex; gap: 40px; margin: 30px 0; }
.about-stats div { }
.about-stats .stat-num { font-size: 1.9rem; }

/* ---------- Services ---------- */
.service-card { text-align: center; padding: 24px 14px; transition: transform .4s cubic-bezier(.16,1,.3,1), background .4s ease; border-radius: 4px; }
.service-card:hover { transform: translateY(-6px); background: rgba(198,174,116,.05); }
.service-icon { color: var(--gold); margin: 0 auto 20px; display: flex; justify-content: center; transition: transform .4s cubic-bezier(.34,1.56,.64,1), color .3s ease; }
.service-card:hover .service-icon { transform: scale(1.15) rotate(-4deg); color: var(--gold-light); }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--cream-dim); font-size: .92rem; }
.services-cta { text-align: center; margin-top: 50px; }

/* ---------- Journal ---------- */
.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.filter-tabs button {
  padding: 9px 22px; border: 1px solid rgba(240,228,184,.3); background: transparent; color: var(--cream-dim);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; transition: all .25s ease;
}
.filter-tabs button:hover { border-color: var(--gold); color: var(--gold-light); }
.filter-tabs button.is-active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.journal-card { position: relative; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.journal-card:hover { transform: translateY(-6px); }
.journal-card .ph, .journal-card .photo { margin-bottom: 16px; }
.journal-play {
  position: absolute; top: 16px; left: 16px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10,7,5,.55); border: 1px solid var(--gold); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.journal-play svg { width: 14px; height: 14px; }
.journal-cat { color: var(--gold); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }
.journal-card h3 { font-size: 1.1rem; margin: 6px 0 0; }
[data-filter-item] { display: block; }
[data-filter-item][hidden] { display: none; }

/* ---------- CTA band / footer ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--black), var(--maroon-deep));
  text-align: center; padding: 140px 0;
}
.cta-band-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,5,3,.88) 0%, rgba(10,5,3,.72) 50%, rgba(10,5,3,.9) 100%);
}
.cta-band-inner { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-band-sub { color: var(--cream-dim); margin-bottom: 36px; }
.cta-actions { margin-bottom: 46px; }
.social-row { display: flex; justify-content: center; gap: 20px; }
.social-row a {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(240,228,184,.3);
  display: flex; align-items: center; justify-content: center; color: var(--gold-light);
  transition: background .25s ease, color .25s ease;
}
.social-row a:hover { background: var(--gold); color: var(--black); }

.site-footer { background: var(--black); border-top: 1px solid rgba(198,174,116,.15); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--cream-dim); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { width: 100%; text-align: center; font-size: .78rem; color: rgba(244,238,224,.4); margin: 0; order: 3; }
.brand-footer { align-items: center; }
@media (max-width: 780px) { .footer-inner { flex-direction: column; text-align: center; } .footer-nav { justify-content: center; } }

/* ---------- Prose / default content ---------- */
.prose { padding: 100px 0; }
.prose h2 { margin-top: 1.6em; }
.prose a { color: var(--gold-light); text-decoration: underline; }
.prose blockquote { border-left: 2px solid var(--gold); padding-left: 20px; font-style: italic; color: var(--cream-dim); }

/* Centered, editorial treatment for narrative story/journal/film/about copy */
.prose-narrative {
  max-width: 720px; text-align: center;
}
.prose-narrative p {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.7; color: var(--cream);
  margin: 0 auto 1.3em;
}
.prose-narrative p:last-child { margin-bottom: 0; }
.prose-narrative h2 { text-align: center; }
.prose-narrative blockquote {
  border-left: none; padding-left: 0; margin: 1.8em auto; max-width: 560px;
}

/* ---------- Forms ---------- */
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%; background: rgba(0,0,0,.25); border: 1px solid rgba(198,174,116,.35);
  color: var(--cream); padding: 14px 16px; font-family: var(--font-body); font-size: .95rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--gold);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-messages { list-style: none; padding: 0; margin: 0 0 24px; }
.form-messages li, .messages .alert, .notices {
  padding: 14px 18px; border: 1px solid var(--gold); color: var(--cream); margin-bottom: 20px; font-size: .9rem;
}
.notices.error, .notices.red { border-color: #c0392b; color: #f5c6c0; }
.notices.success, .notices.green { border-color: var(--gold); }
.required { color: var(--gold-light); margin-left: 2px; }
.contact-form form button[type="submit"], .contact-form .button {
  display: inline-flex; margin-top: 6px; padding: 16px 36px; border: 1px solid var(--gold);
  background: var(--gold); color: var(--black); text-transform: uppercase; letter-spacing: .2em;
  font-size: .78rem; font-family: var(--font-body); font-weight: 500; transition: background .3s ease;
}
.contact-form form button[type="submit"]:hover, .contact-form .button:hover { background: var(--gold-light); }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-item .icon-wrap { color: var(--gold); flex-shrink: 0; }
.contact-info-item h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-item p { color: var(--cream-dim); margin: 0; font-size: .92rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Media notice modal ---------- */
.media-notice {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  background: rgba(10,7,5,.85); opacity: 0; pointer-events: none; transition: opacity .3s ease; padding: 20px;
}
.media-notice.is-open { opacity: 1; pointer-events: auto; }
.media-notice-box {
  background: linear-gradient(160deg, var(--maroon-deep), var(--black));
  border: 1px solid rgba(198,174,116,.4); padding: 44px 40px; max-width: 420px; text-align: center; position: relative;
}
.media-notice-box .quote-mark { margin-bottom: 14px; }
.media-notice-box h3 { margin-bottom: 10px; }
.media-notice-box p { color: var(--cream-dim); margin-bottom: 0; }
.media-notice-close {
  position: absolute; top: 14px; right: 14px; background: none; border: none; color: var(--gold-light); padding: 6px;
}

/* ---------- Misc ---------- */
.divider-gold { width: 60px; height: 1px; background: var(--gold); margin: 24px auto; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ph::after, .scroll-cue::after { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
