/* ---------- Self-hosted brand fonts ---------- */
@font-face { font-family:'Inter'; font-weight:400; font-style:normal; font-display:swap; src:url('assets/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-weight:500; font-style:normal; font-display:swap; src:url('assets/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-weight:700; font-style:normal; font-display:swap; src:url('assets/fonts/inter-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-weight:800; font-style:normal; font-display:swap; src:url('assets/fonts/inter-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family:'Inter'; font-weight:900; font-style:normal; font-display:swap; src:url('assets/fonts/inter-latin-900-normal.woff2') format('woff2'); }
@font-face { font-family:'Instrument Serif'; font-weight:400; font-style:italic; font-display:swap; src:url('assets/fonts/instrument-serif-latin-400-italic.woff2') format('woff2'); }

/* ============================================
   MISSIONIST MEDIA — V2 site styles
   Editorial minimal (Grizzly-inspired):
   warm white, near-black, big confident sans,
   serif-italic accent words, one black slab.
   ============================================ */

:root {
  --ink: #141413;
  --paper: #faf9f6;
  --white: #ffffff;
  --grey: #6f6e6a;
  --grey-light: #9b9a95;
  --line: #e7e5e0;
  --line-dark: #2c2c2e;
  --max: 1120px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue",
          "Segoe UI", Arial, sans-serif;
  --serif: 'Instrument Serif', Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* The signature accent: serif italic inside bold sans */
.accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.015em;
  color: inherit;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,246,.88);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 17px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-weight: 700; letter-spacing: .16em; font-size: 13.5px;
  display: flex; align-items: center; gap: 8px;
}
.logo-img { height: 20px; width: auto; display: block; }
.nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 500; align-items: center; }
.nav-links a { color: var(--ink); opacity: .6; transition: opacity .15s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta {
  background: var(--ink); color: var(--paper) !important; padding: 8px 18px;
  border-radius: 100px; font-weight: 500; opacity: 1 !important;
}
.nav-cta:hover { opacity: .85 !important; }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; color: var(--ink); }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--grey-light); margin-bottom: 24px;
}
h1 {
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 1.02; letter-spacing: -.03em; font-weight: 800;
}
h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05; letter-spacing: -.025em; font-weight: 800;
}
h3 { font-size: 21px; letter-spacing: -.01em; font-weight: 700; }
.lede { font-size: clamp(17px, 1.8vw, 21px); color: var(--grey); line-height: 1.55; }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
section.tight { padding: 70px 0; }
.section-head { max-width: 860px; margin: 0 0 64px; text-align: left; }
.section-head p { margin-top: 18px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Big statement */
.statement {
  text-align: left; max-width: 920px;
  font-size: clamp(28px, 3.8vw, 46px); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.15;
}

.hr { border: 0; border-top: 1px solid var(--line); margin: 0 auto; max-width: var(--max); }

/* ---------- Hero ---------- */
.hero { padding: 140px 0 120px; text-align: left; border-bottom: 1px solid var(--line); }
.hero .lede { max-width: 580px; margin: 32px 0 0; }
.hero-ctas { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 28px; border-radius: 100px;
  font-weight: 500; font-size: 15px; transition: all .15s;
}
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { opacity: .85; }
.btn-ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-bronze { background: var(--ink); color: var(--paper); }
.btn-bronze:hover { opacity: .85; }

/* ---------- Logo strip ---------- */
.logostrip { border-bottom: 1px solid var(--line); padding: 44px 0; background: var(--paper); }
.logostrip .wrap {
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  align-items: center; justify-content: space-between;
}
.logostrip span {
  font-weight: 700; font-size: 15px; letter-spacing: .1em;
  color: #141413; text-transform: uppercase; white-space: nowrap; opacity: .88;
}
.logostrip img {
  height: 34px; width: auto;
  filter: grayscale(1) brightness(.55) contrast(1.15);
  opacity: .95;
}

/* ---------- Work grid ---------- */
.workgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px 44px; counter-reset: work; }
.work-card { display: block; counter-increment: work; }
.work-thumb {
  aspect-ratio: 16/9; border-radius: 4px; overflow: hidden;
  background: #161615; position: relative; margin-bottom: 22px;
}
.work-thumb iframe { width: 100%; height: 100%; border: 0; }
.thumb-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; color: #6d6d6a;
}
.thumb-placeholder .play {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid #3e3e3c;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  color: #8a8a86; transition: all .15s;
}
.work-card:hover .thumb-placeholder .play { border-color: #fff; color: #fff; }
.thumb-placeholder small { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.work-card .tag {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--grey-light);
}
.work-card .tag::before { content: "0" counter(work) "  ·  "; color: var(--ink); }
.work-card h3 { margin: 10px 0 8px; font-size: 26px; letter-spacing: -.02em; }
.work-card p { color: var(--grey); font-size: 15px; max-width: 470px; }

/* ---------- Series section — the one black slab ---------- */
.series-band { background: var(--ink); color: var(--paper); }
.series-band .eyebrow { color: #8a8a86; }
.series-band h1, .series-band h2 { color: var(--paper); }
.series-band .lede { color: #a9a8a3; }
.series-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 84px; align-items: center; }
.series-points { list-style: none; margin-top: 34px; display: grid; gap: 16px; }
.series-points li { padding-left: 34px; position: relative; color: #cfcec9; font-size: 16px; }
.series-points li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 18px; height: 1px; background: var(--paper);
}
.series-band .btn-ghost { border-color: var(--paper); color: var(--paper); }
.series-band .btn-ghost:hover { background: var(--paper); color: var(--ink); }
.series-band .btn-bronze, .series-band .btn-dark { background: var(--paper); color: var(--ink); }
.series-frame {
  aspect-ratio: 4/5; border-radius: 4px; background: #1e1e1d;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 32px;
}
.series-frame .inner { color: #6d6d6a; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; }
.series-frame .title-card {
  font-size: 32px; font-weight: 700; letter-spacing: -.01em; color: var(--paper); margin-bottom: 14px; line-height: 1.08;
}

/* ---------- Offers ---------- */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; align-items: stretch; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: var(--line); grid-gap: 1px; }
.offer {
  background: var(--white); padding: 44px 36px;
  display: flex; flex-direction: column;
}
.offer.featured { background: var(--ink); color: var(--paper); position: relative; }
.offer .kind { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-light); }
.offer h3 { margin: 14px 0 4px; }
.offer .price { font-size: 46px; font-weight: 700; letter-spacing: -.03em; margin: 14px 0 2px; }
.offer .price small { font-size: 15px; font-weight: 400; color: var(--grey); letter-spacing: 0; }
.offer.featured .price small { color: #a9a8a3; }
.offer .terms { font-size: 13px; color: var(--grey); margin-bottom: 20px; }
.offer.featured .terms { color: #a9a8a3; }
.offer ul { list-style: none; margin: 10px 0 30px; display: grid; gap: 11px; }
.offer li { padding-left: 26px; position: relative; font-size: 14.5px; color: #47463f; }
.offer.featured li { color: #cfcec9; }
.offer li::before { content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 1px; background: currentColor; opacity: .5; }
.offer .btn { margin-top: auto; text-align: center; }
.offer.featured .btn { background: var(--paper); color: var(--ink); border: 0; }

/* ---------- Gala banner ---------- */
.gala {
  border: 1px solid var(--ink); border-radius: 6px; padding: 64px 60px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
  background: var(--white);
}
.gala .eyebrow { color: var(--grey-light); }
.gala h2 { font-size: clamp(26px, 3vw, 40px); }
.gala p { color: var(--grey); margin-top: 14px; max-width: 540px; }
.gala .btn { flex-shrink: 0; }

/* ---------- Quote ---------- */
.quote { text-align: left; max-width: 940px; margin: 0 auto; }
.quote blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(26px, 3.4vw, 42px); font-weight: 400;
  letter-spacing: -.015em; line-height: 1.25;
}
.quote cite { display: block; margin-top: 28px; font-family: var(--font); font-style: normal; color: var(--grey-light); font-size: 12px; text-transform: uppercase; letter-spacing: .2em; }

/* ---------- Process / values ---------- */
.threecol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px; text-align: left; }
.threecol .col h3 { margin-bottom: 10px; font-size: 20px; }
.threecol .col p { color: var(--grey); font-size: 15px; }
.threecol .num {
  font-size: 11.5px; font-weight: 600; color: var(--ink);
  letter-spacing: .2em; margin-bottom: 18px; display: block; text-transform: uppercase;
  border-top: 1px solid var(--ink); padding-top: 16px;
}

/* ---------- Capabilities / add-ons ---------- */
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.cap { background: var(--white); padding: 32px 30px; }
.cap h3 { font-size: 17px; margin-bottom: 8px; }
.cap p { color: var(--grey); font-size: 14px; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: left; }
.team-card .photo {
  aspect-ratio: 4/5; border-radius: 4px; background: #edece7;
  overflow: hidden; margin-bottom: 20px;
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.team-card h3 { font-size: 20px; }
.team-card .role { color: var(--grey); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; margin: 6px 0 12px; }
.team-card p { color: var(--grey); font-size: 14.5px; }

/* ---------- CTA band — black close ---------- */
.cta-band { background: var(--ink); color: var(--paper); text-align: left; }
.cta-band h2 { color: var(--paper); }
.cta-band .eyebrow { color: #8a8a86; }
.cta-band .lede { max-width: 580px; margin: 20px 0 40px; color: #a9a8a3; }
.cta-band .btn-dark { background: var(--paper); color: var(--ink); }

/* ---------- Forms ---------- */
.form { max-width: 640px; margin: 0; display: grid; gap: 20px; }
.form label { font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; display: grid; gap: 9px; text-align: left; color: inherit; }
.form input, .form select, .form textarea {
  font-family: var(--font); font-size: 16px; padding: 14px 16px;
  border: 1px solid #c9c7c1; border-radius: 6px; background: var(--white); width: 100%;
  color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--ink); }
.form textarea { min-height: 130px; resize: vertical; }
.form .btn { justify-self: start; border: 0; cursor: pointer; font-family: var(--font); }
.cta-band .form .btn { background: var(--paper); color: var(--ink); }
.form-note { font-size: 13px; color: inherit; opacity: .6; text-align: left; }

/* Dark-section form fields */
.cta-band .form input, .cta-band .form select, .cta-band .form textarea { border-color: #3e3e3c; background: #1e1e1d; color: var(--paper); }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 60px 0 44px; background: var(--paper); }
.foot { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot .logo { margin-bottom: 14px; }
.foot p { color: var(--grey); font-size: 13.5px; max-width: 320px; }
.foot-links { display: flex; gap: 72px; }
.foot-links .colhead { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 16px; }
.foot-links a { display: block; font-size: 14px; color: var(--ink); margin-bottom: 10px; opacity: .75; }
.foot-links a:hover { opacity: 1; }
.legal {
  margin-top: 52px; padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 12px; color: #b9b7b1;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  letter-spacing: .04em;
}

/* ---------- Page hero (interior) ---------- */
.page-hero { padding: 110px 0 80px; text-align: left; border-bottom: 1px solid var(--line); }
.page-hero .lede { max-width: 640px; margin: 28px 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .workgrid, .threecol, .caps, .team { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr; gap: 48px; }
  .gala { flex-direction: column; align-items: flex-start; padding: 44px 30px; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 20px 28px; gap: 18px; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  section { padding: 72px 0; }
  .hero { padding: 84px 0 68px; }
  .logostrip { padding: 36px 0; }
  .logostrip .wrap { justify-content: center; gap: 22px 28px; }
  .logostrip img { height: 22px !important; }
  .logostrip img[alt="Fair Trade Certified"] { height: 34px !important; }
  .logostrip img[alt="San Diego Zoo"] { height: 24px !important; }
  .logostrip span { font-size: 12px; letter-spacing: .12em; }
}

/* ---------- Featured film band (beat one) ---------- */
.feature-band { background: var(--ink); color: var(--paper); padding: 96px 0 84px; }
.feature-band .word {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(52px, 8vw, 120px); line-height: .95; letter-spacing: -.02em;
  margin-bottom: 44px;
}
.feature-band .player { aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; background: #000; }
.feature-band .player iframe { width: 100%; height: 100%; border: 0; display: block; }
.feature-band .fmeta {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  margin-top: 20px; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: #8a8a86;
}

/* ---------- Cinematic work rows ---------- */
.workrows { display: grid; gap: 100px; }
.wrow { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.wrow.flip { grid-template-columns: 1fr 1.4fr; }
.wrow.flip .wmedia { order: 2; }
.wrow .wmedia { aspect-ratio: 16/9; border-radius: 6px; overflow: hidden; background: #161615; }
.wrow .wmedia iframe { width: 100%; height: 100%; border: 0; display: block; }
.wrow .word {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(44px, 5.6vw, 92px); line-height: .95; letter-spacing: -.02em;
  margin-bottom: 22px;
}
.wrow .wtag { font-size: 11.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 12px; }
.wrow h3 { font-size: 32px; letter-spacing: -.02em; margin-bottom: 10px; }
.wrow p { color: var(--grey); font-size: 15px; }
@media (max-width: 900px) {
  .wrow, .wrow.flip { grid-template-columns: 1fr; gap: 24px; }
  .wrow.flip .wmedia { order: 0; }
  .workrows { gap: 64px; }
  .feature-band { padding: 64px 0 56px; }
}

/* Chant band-aid: crop baked letterbox bars */
.wmedia.crop { position: relative; overflow: hidden; }
.wmedia.crop iframe { position: absolute; top: 50%; left: 0; width: 100%; height: auto; aspect-ratio: 2.39/1; transform: translateY(-50%); }
