/* ============================================================
   SARTAJ FILMS — Rise with the Crown
   Awwwards-style dark cinematic design system
   Fonts: Fraunces (display) + Space Grotesk (body)
   ============================================================ */

:root {
  --bg: #0a0a0d;
  --bg-2: #111014;
  --bg-3: #17151a;
  --ink: #f2efe7;
  --mut: #a49d90;
  --line: rgba(242, 239, 231, 0.13);
  --gold: #d8b45a;
  --gold-2: #f0d48a;
  --accent: #d8b45a;
  --accent-ink: #0a0a0d;
  --ff-d: "Fraunces", Georgia, serif;
  --ff-b: "Space Grotesk", "Segoe UI", sans-serif;
  --pad: clamp(20px, 4.5vw, 72px);
  --radius: 18px;
  --hdr-h: 90px;
}

/* per-industry accents (body class) */
.t-healthcare  { --accent: #5fd3c4; }
.t-education   { --accent: #f2b25c; }
.t-automotive  { --accent: #ff5a4e; }
.t-real-estate { --accent: #d8b45a; }
.t-corporate   { --accent: #6fa8ff; }
.t-ad-films    { --accent: #e86bb3; }
.t-ngo         { --accent: #7fd08f; }
.t-documentary { --accent: #cdb694; }
.t-about       { --accent: #d8b45a; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: #0a0a0d; }

/* ---- film grain + vignette ------------------------------- */
.grain {
  position: fixed; inset: -50%; z-index: 2000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.045; animation: grain 7s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); } 60% { transform: translate(-2%,-2%); }
  80% { transform: translate(3%,3%); }
}

/* ---- custom cursor (fine pointers only) ------------------- */
.cur { display: none; }
@media (pointer: fine) {
  .cur {
    display: block; position: fixed; z-index: 3000; pointer-events: none;
    left: 0; top: 0; width: 10px; height: 10px; border-radius: 50%;
    background: var(--gold); mix-blend-mode: difference;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, opacity .3s;
  }
  .cur.is-hover { width: 52px; height: 52px; opacity: .85; }
}

/* ---- shell ------------------------------------------------ */
.shell { max-width: 1480px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---- header ----------------------------------------------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 900; height: var(--hdr-h);
  display: flex; align-items: center;
  transition: background .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.hdr.is-solid {
  background: rgba(10, 10, 13, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.hdr__in { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hdr__logo img {
  height: 66px; width: auto;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.5));
  transition: transform .3s;
}
.hdr__logo:hover img { transform: scale(1.04); }
.hdr__nav { display: flex; align-items: center; gap: 34px; }
.hdr__link {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  position: relative; padding: 8px 0; display: inline-flex; align-items: center; gap: 7px;
}
.hdr__link::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .35s;
}
.hdr__link:hover::after, .hdr__link.is-active::after { transform: scaleX(1); transform-origin: left; }
.hdr__link .car { font-size: 9px; transition: transform .3s; opacity: .7; }
.dd:hover .hdr__link .car, .dd:focus-within .hdr__link .car { transform: rotate(180deg); }

/* dropdown */
.dd { position: relative; }
.dd__menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px);
  min-width: 340px; padding: 14px; border-radius: 16px;
  background: rgba(16, 15, 20, 0.96); border: 1px solid var(--line);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden; transition: opacity .28s, transform .28s, visibility .28s;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.dd:hover .dd__menu, .dd:focus-within .dd__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dd__item {
  display: flex; align-items: center; gap: 14px; padding: 11px 14px; border-radius: 10px;
  transition: background .25s, padding-left .25s;
}
.dd__item:hover { background: rgba(242,239,231,.06); padding-left: 20px; }
.dd__num { font-size: 10px; letter-spacing: .1em; color: var(--mut); width: 20px; }
.dd__name { font-size: 15px; letter-spacing: .02em; }
.dd__dot { width: 7px; height: 7px; border-radius: 50%; margin-left: auto; }

.hdr__cta {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 11px 22px; border-radius: 999px;
  transition: background .3s, color .3s, border-color .3s;
}
.hdr__cta:hover { background: var(--gold); color: #0a0a0d; border-color: var(--gold); }

/* burger */
.burger { display: none; z-index: 1002; width: 44px; height: 44px; position: relative; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink);
  transition: transform .35s, opacity .35s, top .35s; border-radius: 2px;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 30px; }
.nav-open .burger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* mobile nav overlay */
.mnav {
  position: fixed; inset: 0; z-index: 1000; background: #08080b;
  display: flex; flex-direction: column; justify-content: center; padding: 90px var(--pad) 40px;
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
  overflow-y: auto;
}
.nav-open .mnav { opacity: 1; visibility: visible; }
.mnav__link {
  font-family: var(--ff-d); font-size: clamp(30px, 7.5vw, 44px); font-weight: 500;
  padding: 8px 0; display: flex; align-items: baseline; gap: 16px;
  opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .5s;
}
.nav-open .mnav__link { opacity: 1; transform: none; }
.mnav__link small { font-family: var(--ff-b); font-size: 11px; letter-spacing: .14em; color: var(--mut); }
.mnav__sub {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px 20px; margin: 10px 0 16px;
  opacity: 0; transform: translateY(24px); transition: opacity .5s .1s, transform .5s .1s;
}
.nav-open .mnav__sub { opacity: 1; transform: none; }
.mnav__subl { font-size: 16px; padding: 9px 0; color: var(--mut); display: flex; gap: 10px; align-items: center; border-bottom: 1px solid rgba(242,239,231,.07); }
.mnav__subl b { font-weight: 500; color: var(--ink); }
.mnav__subl i { font-style: normal; font-size: 10px; }
.mnav__foot { margin-top: 28px; color: var(--mut); font-size: 13px; opacity: 0; transition: opacity .5s .2s; }
.nav-open .mnav__foot { opacity: 1; }
.mnav__foot a { color: var(--gold); }

/* ---- type utilities --------------------------------------- */
.eyebrow {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--mut);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--accent); }
.d1 { font-family: var(--ff-d); font-weight: 480; font-size: clamp(44px, 7.6vw, 118px); line-height: 1.02; letter-spacing: -0.015em; }
.d2 { font-family: var(--ff-d); font-weight: 480; font-size: clamp(32px, 4.6vw, 62px); line-height: 1.06; letter-spacing: -0.01em; }
.d3 { font-family: var(--ff-d); font-weight: 500; font-size: clamp(23px, 2.6vw, 34px); line-height: 1.15; }
.it { font-style: italic; font-weight: 340; color: var(--accent); }
.gld { color: var(--gold); }
.lead { font-size: clamp(17px, 1.6vw, 21px); line-height: 1.75; color: var(--ink); }
.body-c { color: var(--mut); max-width: 68ch; }
.body-c strong, .body-c b { color: var(--ink); font-weight: 500; }
.body-c a { color: var(--accent); border-bottom: 1px solid transparent; }
.body-c a:hover { border-bottom-color: var(--accent); }

/* ---- sections --------------------------------------------- */
.sec { padding: clamp(64px, 9vw, 140px) 0; position: relative; }
.sec--tight { padding: clamp(40px, 6vw, 88px) 0; }
.sec--line { border-top: 1px solid var(--line); }
.shead { display: flex; align-items: flex-end; gap: 26px; margin-bottom: clamp(30px, 4.5vw, 60px); flex-wrap: wrap; }
.shead__num { font-family: var(--ff-d); font-style: italic; font-size: clamp(15px, 1.5vw, 19px); color: var(--accent); white-space: nowrap; padding-bottom: 8px; }
.shead__t { flex: 1 1 auto; min-width: 240px; }
.shead__d { flex-basis: 100%; max-width: 760px; color: var(--mut); margin-top: 4px; }

/* ---- reveal ------------------------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.2,.65,.25,1), transform .9s cubic-bezier(.2,.65,.25,1); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .grain { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---- marquee ----------------------------------------------- */
.marq { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 0; position: relative; }
.marq__track { display: flex; gap: 0; width: max-content; animation: marq 36s linear infinite; }
.marq:hover .marq__track { animation-play-state: paused; }
.marq__item {
  font-family: var(--ff-d); font-size: clamp(15px, 1.7vw, 21px); font-weight: 420; white-space: nowrap;
  padding: 0 26px; display: inline-flex; align-items: center; gap: 52px; color: var(--mut);
}
.marq__item::after { content: "✦"; color: var(--accent); font-size: 11px; }
@keyframes marq { to { transform: translateX(-50%); } }

/* model badge marquee (logo-style lockups) */
.marq--models { padding: 22px 0; }
.marq__item--m {
  font-family: var(--ff-b); color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 12px; padding: 0 34px;
}
.marq__item--m b {
  font-weight: 650; font-size: clamp(19px, 2.2vw, 30px); letter-spacing: .045em;
  text-transform: uppercase; white-space: nowrap;
}
.marq__item--m i {
  font-style: normal; font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(216,180,90,.4); border-radius: 999px;
  padding: 4px 10px; white-space: nowrap; transform: translateY(-3px);
}
.marq__item--m::after { content: "✦"; color: var(--gold); font-size: 12px; margin-left: 30px; }

/* ---- hero (home) ------------------------------------------- */
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; padding-top: var(--hdr-h); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__movie {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: .58;
  filter: saturate(.85) contrast(1.05);
}
.hero__bg::before, .hero__bg::after { z-index: 1; }
.hero__bg::before {
  content: ""; position: absolute; width: 130vmax; height: 130vmax; left: 50%; top: -20%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(216,180,90,.14), rgba(216,180,90,.05) 38%, transparent 68%);
  animation: heroGlow 9s ease-in-out infinite alternate;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,13,.25), rgba(10,10,13,0) 40%, rgba(10,10,13,.85) 92%);
}
@keyframes heroGlow { from { opacity: .65; transform: translateX(-52%) scale(1); } to { opacity: 1; transform: translateX(-48%) scale(1.06); } }
.hero__in { position: relative; z-index: 2; padding-bottom: clamp(60px, 9vh, 120px); }
.hero__kick { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; color: var(--mut); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
.hero__kick::before { content: ""; width: 44px; height: 1px; background: var(--gold); }
.hero__title { max-width: 15ch; }
.hero__title .row { display: block; overflow: hidden; }
.hero__title .row > span { display: inline-block; animation: riseUp 1.1s cubic-bezier(.2,.7,.2,1) both; }
.hero__title .row:nth-child(2) > span { animation-delay: .12s; }
.hero__title .row:nth-child(3) > span { animation-delay: .24s; }
@keyframes riseUp { from { transform: translateY(110%); } to { transform: none; } }
.hero__sub { margin-top: 30px; display: flex; gap: 40px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.hero__sub p { max-width: 52ch; color: var(--mut); }
.hero__scroll { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--mut); display: inline-flex; align-items: center; gap: 12px; }
.hero__scroll::after { content: ""; width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---- page hero (industry) ---------------------------------- */
.phero { padding: calc(var(--hdr-h) + clamp(40px, 7vw, 96px)) 0 clamp(44px, 6vw, 80px); position: relative; overflow: hidden; }
.phero::before {
  content: ""; position: absolute; width: 90vmax; height: 90vmax; right: -30vmax; top: -45vmax; border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--accent) 16%, transparent), transparent 70%);
}
.phero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 80px); align-items: end; position: relative; }
.phero__tag { margin-top: 14px; }
.phero__h1 { font-size: clamp(34px, 5.2vw, 76px); }
.phero__intro { margin-top: clamp(26px, 3vw, 44px); display: grid; gap: 18px; }
.phero__media { position: relative; border-radius: var(--radius); overflow: hidden; align-self: center; }
.phero__media img { display: block; width: 100%; height: auto; filter: grayscale(.35) contrast(1.06); transition: transform 1.2s cubic-bezier(.2,.65,.25,1), filter .8s; }
.phero__media:hover img { transform: scale(1.045); filter: grayscale(0) contrast(1.03); }
.phero__media::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(200deg, color-mix(in srgb, var(--accent) 24%, transparent), transparent 55%); mix-blend-mode: overlay; pointer-events: none; }
.phero__media::after { content: ""; position: absolute; inset: 14px; z-index: 2; border: 1px solid rgba(242,239,231,.25); border-radius: calc(var(--radius) - 8px); pointer-events: none; }

/* ---- round portrait (founder page) -------------------------- */
.pround { display: flex; justify-content: center; align-items: center; }
.pround img { width: 100%; max-width: 480px; filter: drop-shadow(0 30px 70px rgba(0,0,0,.55)); }

/* ---- video facade cards ------------------------------------ */
.vgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 34px) clamp(16px, 2vw, 28px); }
.vgrid--2 { grid-template-columns: repeat(2, 1fr); }
.vcard { min-width: 0; }
.vcard--wide { grid-column: span 2; }
.vid {
  position: relative; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-3), #0d0c10 60%);
  border: 1px solid rgba(242,239,231,.09); cursor: pointer;
}
.vid img.vid__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .9s cubic-bezier(.2,.65,.25,1), opacity .5s; }
.vid:hover img.vid__poster { transform: scale(1.05); opacity: 1; }
.vid__art {
  position: absolute; inset: 0; padding: 7% 8%;
  display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
  background:
    radial-gradient(130% 170% at 88% -10%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 58%),
    radial-gradient(120% 150% at 0% 110%, rgba(216,180,90,.18), transparent 58%),
    linear-gradient(150deg, #1c1a24, #0c0b10 70%);
  transition: transform .9s cubic-bezier(.2,.65,.25,1);
}
.vid__art::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: url(../img/logo-big.png) no-repeat center / auto 46%;
  opacity: .14; filter: grayscale(.15);
}
.vid:hover .vid__art { transform: scale(1.04); }
.vid__art-brand { position: relative; font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: color-mix(in srgb, var(--accent) 80%, #fff 10%); }
.vid__art-t {
  position: relative;
  font-family: var(--ff-d); font-style: italic; font-weight: 380;
  font-size: clamp(17px, 1.55vw, 24px); line-height: 1.22; color: rgba(242,239,231,.92);
  max-width: 92%; letter-spacing: .01em;
}
.vfeat .vid__art-t { font-size: clamp(26px, 3vw, 46px); }
.vfeat .vid__art-brand { font-size: 12px; letter-spacing: .32em; }
.vid.is-playing .vid__art { display: none; }
.vid::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,5,8,.55)); pointer-events: none; }
.vid__play {
  position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(10,10,13,.55); border: 1px solid rgba(242,239,231,.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center; transition: background .3s, transform .3s, border-color .3s;
}
.vid__play svg { width: 18px; height: 18px; fill: var(--ink); margin-left: 3px; transition: fill .3s; }
.vid:hover .vid__play { background: var(--accent); border-color: var(--accent); transform: translate(-50%,-50%) scale(1.08); }
.vid:hover .vid__play svg { fill: #0a0a0d; }
.vid iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid.is-playing .vid__play, .vid.is-playing .vid__poster { display: none; }
.vcard__cap { display: flex; gap: 12px; margin-top: 14px; align-items: baseline; }
.vcard__num { font-size: 10px; letter-spacing: .12em; color: var(--accent); font-variant-numeric: tabular-nums; }
.vcard__t { font-size: 15px; font-weight: 500; letter-spacing: .01em; line-height: 1.4; }
.vcard__sub { font-size: 12.5px; color: var(--mut); margin-top: 3px; }

/* featured (hero) video */
.vfeat { border-radius: var(--radius); }
.vfeat .vid__play { width: 84px; height: 84px; }
.vfeat .vid__play svg { width: 24px; height: 24px; }

/* ---- film features (home) ---------------------------------- */
.film { padding: clamp(40px, 5.5vw, 84px) 0; border-top: 1px solid var(--line); }
.film:first-of-type { border-top: 0; }
.film__poster { position: relative; max-width: 1180px; margin: 0 auto; }
.film__poster .vid { border-radius: var(--radius); box-shadow: 0 34px 90px rgba(0,0,0,.5); }
.film__meta { max-width: 1180px; margin: clamp(26px, 3.5vw, 46px) auto 0; }
.film__meta .eyebrow { margin-bottom: 6px; }
.film__meta h3 { margin: 14px 0 20px; max-width: 24ch; }
.film__meta .body-c { max-width: 78ch; }
.film__meta .body-c + .body-c { margin-top: 16px; }
.vcard--hero { max-width: 1180px; margin: 0 auto; }
.vcard--hero .vid { box-shadow: 0 34px 90px rgba(0,0,0,.5); border-radius: var(--radius); }
.film__genre { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.film__genre::before { content: "◆"; font-size: 8px; }
.film__body { display: grid; gap: 18px; }
.film__vid { margin-top: 10px; max-width: 640px; }
.film--flip .film__poster { order: 2; }

/* awards callout */
.award {
  display: grid; grid-template-columns: minmax(280px, 480px) 1fr; gap: clamp(26px, 4vw, 64px);
  background: linear-gradient(135deg, rgba(216,180,90,.09), rgba(216,180,90,.02) 55%);
  border: 1px solid rgba(216,180,90,.22); border-radius: calc(var(--radius) + 6px);
  padding: clamp(24px, 3.5vw, 56px); align-items: center;
  margin: clamp(8px, 1.5vw, 18px) 0 clamp(34px, 5vw, 64px);
}
.award + .award { margin-top: 0; }
.award--flip { grid-template-columns: 1fr minmax(280px, 480px); }
.award--flip .award__img { order: 2; justify-self: end; }
.award__img { border-radius: 12px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.45); max-width: 400px; }
.award__img img { width: 100%; transition: transform .8s cubic-bezier(.2,.65,.25,1); }
.award__img:hover img { transform: scale(1.03); }
.award__list { display: grid; gap: 26px; }
.award__item h3 { font-family: var(--ff-d); font-size: clamp(20px, 2.1vw, 27px); font-weight: 500; line-height: 1.25; margin-bottom: 10px; }
.award__item p { color: var(--mut); font-size: 14.5px; max-width: 64ch; }
.award__item a { color: var(--gold); }

/* ---- chips -------------------------------------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 13px; letter-spacing: .03em; color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px;
  background: rgba(242,239,231,.03); transition: border-color .3s, background .3s;
}
.chip:hover { border-color: var(--accent); background: rgba(242,239,231,.06); }
.chip--a { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }

/* ---- industry index (home) --------------------------------- */
.igrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.icard {
  --ac: var(--gold);
  position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px;
  padding: clamp(20px, 2.6vw, 34px) clamp(18px, 2.4vw, 34px);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color .35s, transform .35s, background .35s;
  background: rgba(242,239,231,.02);
}
.icard:hover { border-color: color-mix(in srgb, var(--ac) 55%, transparent); transform: translateY(-4px); background: rgba(242,239,231,.045); }
.icard__num { font-family: var(--ff-d); font-style: italic; font-size: 15px; color: var(--ac); }
.icard__name { font-family: var(--ff-d); font-size: clamp(22px, 2.6vw, 34px); font-weight: 480; line-height: 1.1; }
.icard__tag { font-size: 12.5px; color: var(--mut); margin-top: 5px; }
.icard__arrow { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s; }
.icard__arrow svg { width: 15px; height: 15px; stroke: var(--ink); transition: stroke .3s; }
.icard:hover .icard__arrow { background: var(--ac); border-color: var(--ac); transform: rotate(-45deg); }
.icard:hover .icard__arrow svg { stroke: #0a0a0d; }
.icard::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ac); opacity: 0; transition: opacity .3s; }
.icard:hover::before { opacity: 1; }

/* ---- person / bio ------------------------------------------- */
.bio { display: grid; grid-template-columns: minmax(260px, 420px) 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.bio__img { border-radius: var(--radius); overflow: hidden; position: relative; }
.bio__img img { width: 100%; filter: contrast(1.04); transition: transform 1.1s cubic-bezier(.2,.65,.25,1); }
.bio__img:hover img { transform: scale(1.04); }
.bio__body { display: grid; gap: 18px; }
.bio--flip .bio__img { order: 2; }

/* ---- academy band ------------------------------------------- */
.acad {
  border-radius: calc(var(--radius) + 8px); border: 1px solid var(--line);
  background:
    radial-gradient(120% 160% at 85% 0%, rgba(216,180,90,.13), transparent 55%),
    linear-gradient(160deg, var(--bg-2), #0c0b0f);
  padding: clamp(30px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr auto; gap: clamp(24px, 4vw, 64px); align-items: center;
}
.acad__logo img { width: clamp(150px, 18vw, 240px); height: auto; }
.acad--alt .acad__logo img { width: clamp(250px, 30vw, 400px); filter: drop-shadow(0 10px 34px rgba(216,180,90,.18)); }
.acad__body { display: grid; gap: 18px; max-width: 760px; }

/* ---- testimonials ------------------------------------------- */
.tgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 40px); }
.tcard { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(242,239,231,.02); display: flex; flex-direction: column; }
.tcard__body { padding: clamp(20px, 2.4vw, 34px); display: grid; gap: 10px; }
.tcard__name { font-family: var(--ff-d); font-size: clamp(21px, 2.2vw, 28px); font-weight: 500; }
.tcard__role { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.tcard__txt { color: var(--mut); font-size: 14.5px; }

/* ---- project cards (NGO) ------------------------------------ */
.pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); }
.pcard { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(242,239,231,.02); display: flex; flex-direction: column; transition: border-color .3s, transform .3s; }
.pcard:hover { border-color: color-mix(in srgb, var(--accent) 40%, transparent); transform: translateY(-3px); }
.pcard__body { padding: clamp(20px, 2.4vw, 32px); display: grid; gap: 10px; }
.pcard__client { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.pcard__t { font-family: var(--ff-d); font-size: clamp(20px, 2vw, 26px); font-weight: 500; line-height: 1.22; }
.pcard__txt { color: var(--mut); font-size: 14.5px; }

/* ---- doc rows (documentary page) ---------------------------- */
.docrow { display: grid; grid-template-columns: minmax(220px, 320px) 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; padding: clamp(30px, 4vw, 56px) 0; border-top: 1px solid var(--line); }
.docrow:first-of-type { border-top: 0; }
.docrow__poster { border-radius: 14px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.docrow__poster img { width: 100%; transition: transform 1s cubic-bezier(.2,.65,.25,1); }
.docrow__poster:hover img { transform: scale(1.04); }
.docrow__body { display: grid; gap: 16px; }
.docrow__body .vid { max-width: 640px; }

/* ---- gallery (masonry, natural proportions) ------------------- */
.gal { columns: 4 230px; column-gap: 14px; }
.galgrp + .galgrp { margin-top: clamp(36px, 5vw, 64px); }
.gal a, .gal figure {
  display: block; border-radius: 12px; overflow: hidden; margin: 0 0 14px;
  break-inside: avoid; cursor: zoom-in; position: relative;
}
.gal img { display: block; width: 100%; height: auto; transition: transform .9s cubic-bezier(.2,.65,.25,1), filter .5s; }
.gal a:hover img, .gal figure:hover img { transform: scale(1.05); }
.gal--row { columns: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.gal--row figure { margin: 0; }

/* client logo tiles (white, like interior.sartajfilms.com) */
.clrow { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.clrow__tile {
  margin: 0; background: #fff; border-radius: 12px; padding: clamp(16px, 2vw, 26px);
  display: flex; align-items: center; justify-content: center; aspect-ratio: 1/1;
  transition: transform .35s;
}
.clrow__tile:hover { transform: translateY(-4px); }
.clrow__tile img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---- video lightbox -------------------------------------------- */
.vlb {
  position: fixed; inset: 0; z-index: 4000; display: none;
  background: rgba(6, 6, 9, 0.97);
  align-items: center; justify-content: center;
}
.vlb.is-open { display: flex; }
.vlb__frame {
  width: min(92vw, 1320px); aspect-ratio: 16/9; max-height: 86vh;
  border-radius: 12px; overflow: hidden; background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
  animation: lbIn .35s cubic-bezier(.2,.7,.2,1);
}
.vlb__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vlb .lb__close { position: absolute; top: clamp(10px, 3vw, 28px); right: clamp(10px, 3vw, 28px); }

/* ---- lightbox slideshow --------------------------------------- */
.lb {
  position: fixed; inset: 0; z-index: 4000; display: none;
  background: rgba(6, 6, 9, 0.96);
  align-items: center; justify-content: center;
}
.lb.is-open { display: flex; }
.lb__img {
  max-width: min(92vw, 1400px); max-height: 86vh; width: auto; height: auto;
  border-radius: 10px; box-shadow: 0 40px 120px rgba(0,0,0,.7);
  animation: lbIn .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes lbIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lb__btn {
  position: absolute; z-index: 2; width: 54px; height: 54px; border-radius: 50%;
  border: 1px solid rgba(242,239,231,.3); background: rgba(10,10,13,.5);
  color: var(--ink); font-size: 22px; line-height: 1; display: grid; place-items: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background .25s, border-color .25s, color .25s;
}
.lb__btn:hover { background: var(--gold); border-color: var(--gold); color: #0a0a0d; }
.lb__prev { left: clamp(10px, 3vw, 40px); top: 50%; transform: translateY(-50%); }
.lb__next { right: clamp(10px, 3vw, 40px); top: 50%; transform: translateY(-50%); }
.lb__close { top: clamp(10px, 3vw, 28px); right: clamp(10px, 3vw, 28px); font-size: 18px; }
.lb__count {
  position: absolute; bottom: clamp(12px, 3vw, 26px); left: 50%; transform: translateX(-50%);
  font-size: 12px; letter-spacing: .22em; color: var(--mut); text-transform: uppercase;
}

/* ---- client logo wall ----------------------------------------- */
.clients { max-width: 1020px; margin: 0 auto; }
.clients img { width: 100%; border-radius: var(--radius); }

/* ---- stats row ----------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 2.4vw, 32px); background: rgba(242,239,231,.02); }
.stat__n { font-family: var(--ff-d); font-size: clamp(34px, 4vw, 56px); font-weight: 480; color: var(--gold); line-height: 1; }
.stat__l { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--mut); margin-top: 12px; }

/* ---- media band (map / studio) -------------------------------- */
.mband { border-radius: calc(var(--radius) + 6px); overflow: hidden; border: 1px solid var(--line); position: relative; }
.mband img { width: 100%; }
.mband--pad { background: #f6f3ec; }
.mband--pad img { max-width: 1100px; margin: 0 auto; }

/* ---- CTA band -------------------------------------------------- */
.cta { text-align: center; padding: clamp(70px, 11vw, 170px) 0; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; width: 90vmax; height: 90vmax; left: 50%; top: 50%; transform: translate(-50%,-50%); background: radial-gradient(closest-side, rgba(216,180,90,.1), transparent 70%); pointer-events: none; }
.cta .eyebrow { justify-content: center; }
.cta .eyebrow::before { display: none; }
.cta__t { margin: 22px auto 34px; max-width: 17ch; position: relative; }
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold); border-radius: 999px; padding: 17px 36px;
  transition: background .35s, color .35s, gap .35s; position: relative;
}
.btn:hover { background: var(--gold); color: #0a0a0d; gap: 20px; }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #0a0a0d; }

/* ---- footer ----------------------------------------------------- */
.ftr { border-top: 1px solid var(--line); padding: clamp(50px, 7vw, 100px) 0 30px; position: relative; overflow: hidden; }
.ftr__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 60px); margin-bottom: clamp(44px, 6vw, 80px); }
.ftr__brand img { height: 52px; width: auto; margin-bottom: 18px; }
.ftr__brand p { color: var(--mut); font-size: 14px; max-width: 34ch; }
.ftr__h { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.ftr__col p, .ftr__col a { display: block; color: var(--mut); font-size: 14.5px; line-height: 1.7; }
.ftr__col a { padding: 3px 0; transition: color .3s; }
.ftr__col a:hover { color: var(--ink); }
.ftr__vent {
  display: flex; align-items: center; justify-content: center; gap: clamp(26px, 4vw, 56px);
  flex-wrap: wrap; padding: 6px 0 clamp(40px, 6vw, 70px);
}
.ftr__vent-l { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--mut); }
.ftr__vent img { height: 62px; width: auto; opacity: .9; transition: opacity .3s, transform .3s; }
.ftr__vent a:hover img { opacity: 1; transform: translateY(-3px); }
.ftr__base { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 22px; font-size: 12.5px; color: var(--mut); }
.ftr__base a { color: var(--gold); }

/* ---- about page ---------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.member { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: rgba(242,239,231,.02); }
.member__img { aspect-ratio: 1/1.05; overflow: hidden; }
.member__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; filter: grayscale(.25); transition: transform 1s cubic-bezier(.2,.65,.25,1), filter .5s; }
.member:hover .member__img img { transform: scale(1.05); filter: grayscale(0); }
.member__body { padding: clamp(20px, 2.4vw, 30px); display: grid; gap: 10px; }
.member__name { font-family: var(--ff-d); font-size: clamp(21px, 2.1vw, 27px); font-weight: 500; }
.member__role { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.member__txt { font-size: 14px; color: var(--mut); }
.member__mail { font-size: 13px; color: var(--gold); }

/* ---- misc ------------------------------------------------------ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4.5vw, 72px); align-items: start; }
.note-card { border-left: 2px solid var(--accent); padding: 6px 0 6px 24px; color: var(--mut); font-size: 15px; }
.center { text-align: center; }
.mt-1 { margin-top: 18px; } .mt-2 { margin-top: 30px; } .mt-3 { margin-top: 48px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .vgrid { grid-template-columns: repeat(2, 1fr); }
  .vcard--wide { grid-column: span 2; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
  .gal { columns: 3 200px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hdr__nav, .hdr__cta { display: none; }
  .burger { display: block; }
  .phero__grid, .two-col, .bio, .award, .acad { grid-template-columns: 1fr; }
  .bio--flip .bio__img { order: 0; }
  .award--flip { grid-template-columns: 1fr; }
  .award--flip .award__img { order: 0; justify-self: start; }
  .docrow__poster { max-width: 420px; }
  .igrid, .tgrid, .pgrid { grid-template-columns: 1fr; }
  .docrow { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .acad__logo { order: -1; }
}
@media (max-width: 620px) {
  .vgrid, .vgrid--2 { grid-template-columns: 1fr; }
  .vcard--wide { grid-column: auto; }
  .gal { columns: 2 130px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__sub { flex-direction: column; align-items: flex-start; }
  .mnav__sub { grid-template-columns: 1fr; }
}
