/* =========================================================
   Films By Mani Jegan — Doodle Edition
   Shared stylesheet
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Delius+Swash+Caps&family=Delius&family=JetBrains+Mono&family=Allura&family=Montserrat:wght@300;400&display=swap');

@font-face {
  font-family: 'American Signature';
  src: url('../fonts/American Signature.otf') format('opentype'),
       url('../fonts/American Signature.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg:        #ffffff;
  --bg-alt:    #eef2e8;
  --ink:       #111827;
  --ink-soft:  #374151;
  --line:      #111827;          /* doodle outlines are dark */
  --accent:    #6f7c61;          /* sage green */
  --secondary: #434f3a;          /* dark olive */
  --white:     #ffffff;

  --serif: "Allura", cursive;                                  /* headings — signature script */
  --sans:  "Montserrat", "Helvetica Neue", Arial, sans-serif;  /* body */
  --mono:  "JetBrains Mono", monospace;

  /* Hand-drawn box look */
  --doodle-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
  --doodle-shadow: 8px 8px 0 var(--secondary);

  --maxw: 1180px;
  --gut:  clamp(1.25rem, 5vw, 4rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: #f7f3ea;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Creamy-white base with a soft green glow on the LEFT — fixed behind all content */
body::before {
  content: "";
  position: fixed;
  inset: -120px;            /* oversize so the blur edges fall outside the viewport */
  z-index: -1;
  background: #f7f3ea;       /* creamy white (shows on the right side) */
  background-image: radial-gradient(
    circle at left center,
    rgba(111, 124, 97, 0.55),
    transparent 65%
  );
  background-repeat: no-repeat;
  filter: blur(80px);
  pointer-events: none;
}

/* ---------- Masked word reveal (headings) ---------- */
.tr-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  /* extra room so tall script flourishes / descenders aren't clipped */
  padding: 0.14em 0.02em 0.2em;
  margin: -0.14em -0.02em -0.2em;
}
.tr-i {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.tr-w.in .tr-i { transform: translateY(0); }

/* ---------- Decorative line-art band ---------- */
.lineart-band {
  display: block;
  width: 100%;
  max-width: 1050px;
  height: auto;
  margin: 0 auto;
}


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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(244,247,240,0.92);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  max-width: 70vw;
}
.brand-name {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.brand-role {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 0.15rem;
  padding-left: 0.2rem;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* White nav while sitting over the hero video (top of home page) */
.site-header.over-hero .brand,
.site-header.over-hero .nav-links a { color: #fff; }
.site-header.over-hero .nav-links a::after { background: #fff; }
.site-header.over-hero .nav-toggle span { background: #fff; }
/* …but revert to dark once the user scrolls and the bar gets a background */
.site-header.over-hero.scrolled .brand,
.site-header.over-hero.scrolled .nav-links a { color: var(--ink); }
.site-header.over-hero.scrolled .nav-links a::after { background: var(--ink); }
.site-header.over-hero.scrolled .nav-toggle span { background: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  padding: 0.75rem 1.8rem;
  background: var(--accent);
  color: #fff;
  border: 2.5px solid var(--ink);
  border-radius: var(--doodle-radius);
  box-shadow: var(--doodle-shadow);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .3s var(--ease);
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 10px 10px 0 var(--secondary); background: #7e8c6f; }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--secondary); }
.btn-ghost { background: #fff; color: var(--ink); }

/* ---------- Hero (full-bleed cinematic video) ---------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 88vh;
  background: #000;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.10) 35%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.8);
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-cue::after {
  content: ""; display: block; width: 1px; height: 42px;
  background: rgba(255,255,255,0.6); margin: 0.7rem auto 0;
  animation: cue 2s infinite;
}
@keyframes cue { 0%,100%{ opacity:.3; transform:scaleY(.6);} 50%{ opacity:1; transform:scaleY(1);} }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 12vw, 9rem) 0; }
.section-head { max-width: 60ch; margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0.8rem 0 1.2rem; }
.section-head p { color: var(--ink-soft); }
/* Sections are transparent so the blue glow background shows through */
.bg-alt { background: transparent; }
main > .section:nth-of-type(odd),
main > .section:nth-of-type(even) { background: transparent; }
.center { text-align: center; margin-inline: auto; }

/* Big statement */
.statement { text-align: center; }
.statement h2 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  max-width: 18ch;
  margin-inline: auto;
}
.statement .accent { font-style: italic; color: var(--accent); }

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
/* Doodle frames on content imagery */
.split img, .about-grid img, .ed-media img {
  border: 2.5px solid var(--ink);
  border-radius: var(--doodle-radius);
  box-shadow: var(--doodle-shadow);
}
.film, .service-band {
  border: 2.5px solid var(--ink);
  border-radius: var(--doodle-radius);
  box-shadow: var(--doodle-shadow);
}

.split img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }

/* Services cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 2.5px solid var(--line);
  border-radius: var(--doodle-radius);
  box-shadow: var(--doodle-shadow);
  padding: 2.6rem 2rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:nth-child(even) { border-radius: 15px 225px 15px 255px / 255px 15px 225px 15px; }
.card:hover { transform: translate(-2px, -2px) rotate(-1deg); box-shadow: 11px 11px 0 var(--secondary); }
.card .num { font-family: var(--serif); font-size: 1.3rem; color: var(--accent); }
.card h3 { font-size: 1.5rem; margin: 0.8rem 0 0.8rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }

/* How we work — accordion */
.accordion {
  max-width: 820px;
  margin: 2.5rem auto 0;
}
.acc-item {
  border-top: 2px solid var(--line);
}
.acc-item:last-child { border-bottom: 2px solid var(--line); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.5rem 0.5rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink, #111827);
  transition: padding .25s var(--ease);
}
.acc-item.open .acc-head,
.acc-head:hover { padding-left: 1.2rem; }
.acc-num {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1;
  color: var(--accent);
  min-width: 2.4ch;
}
.acc-title {
  flex: 1;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
}
.acc-icon {
  width: 14px;
  height: 14px;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .35s var(--ease);
  flex: none;
  margin-right: 0.4rem;
}
.acc-item.open .acc-icon { transform: rotate(-135deg); }
/* smooth slide-down using grid-template-rows 0fr -> 1fr */
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.acc-item.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel-inner { overflow: hidden; }
.acc-item.open .acc-panel-inner { padding: 0 0.5rem 2rem; }
.acc-panel-inner img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border: 2.5px solid var(--line);
  border-radius: var(--doodle-radius);
  box-shadow: var(--doodle-shadow);
  margin-bottom: 1.2rem;
}
.acc-panel-inner p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 60ch;
}

/* Portfolio / film grid */
.film-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
}
.film {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-alt);
}
.film img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.film:hover img { transform: scale(1.06); }
.film-cap {
  position: absolute; inset: auto 0 0 0;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  color: var(--white);
  transform: translateY(8px);
  opacity: 0;
  transition: all .5s var(--ease);
}
.film:hover .film-cap { transform: translateY(0); opacity: 1; }
.film-cap h3 { font-size: 1.4rem; }
.film-cap span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: .85; }
.film .play {
  position: absolute; inset: 0; margin: auto;
  width: 64px; height: 64px; border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%; display: grid; place-items: center;
  color: #fff; transition: background .4s var(--ease);
}
.film:hover .play { background: rgba(255,255,255,0.15); }
.film .play::after { content: ""; border-left: 12px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 4px; }

/* Documentaries pillars */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem 4rem; }
.pillar h3 { font-size: 1.7rem; margin-bottom: 0.8rem; }
.pillar .eyebrow { display: block; margin-bottom: 0.6rem; }
.pillar p { color: var(--ink-soft); }

/* About */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-grid h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 0.4rem; }
.about-grid .role { letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.75rem; color: var(--accent); margin-bottom: 1.8rem; display: inline-block; }
.about-grid p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.stats { display: flex; gap: 3rem; margin-top: 2.4rem; flex-wrap: wrap; }
.stat .n { font-family: var(--serif); font-size: 2.6rem; line-height: 1; }
.stat .l { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Form ---------- */
.form-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,6vw,5rem); align-items: start; }
.form-intro h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0.8rem 0 1.2rem; }
.form-intro p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.contact-line { font-size: 0.95rem; margin-bottom: 0.5rem; }
.contact-line span { color: var(--accent); letter-spacing: 0.1em; }

form { display: grid; gap: 1.4rem; }
.field { display: grid; gap: 0.5rem; }
.field label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: 18px 220px 18px 220px / 220px 18px 220px 18px;
  padding: 0.7rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; box-shadow: var(--doodle-shadow); }
.field textarea { resize: vertical; min-height: 90px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-msg { font-size: 0.85rem; color: var(--accent); min-height: 1.2em; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--secondary); color: #cfc9bf;
  padding: clamp(3.5rem, 8vw, 6rem) 0 2.5rem;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  transform: translateY(-99%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='40' viewBox='0 0 200 40' preserveAspectRatio='none'%3E%3Cpath d='M0 20 Q25 0 50 20 T100 20 T150 20 T200 20 V40 H0 Z' fill='%23434f3a'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: 200px 40px;
  pointer-events: none;
}
.footer-top { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; align-items: flex-start; }
.footer-brand { font-family: var(--serif); font-size: 2rem; color: var(--bg); }
.footer-brand + p { max-width: 32ch; margin-top: 1rem; font-size: 0.92rem; }
.footer-cols { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--sans); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: #8d867a; margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.9rem; margin-bottom: 0.7rem; transition: color .3s; }
.footer-col a:hover { color: var(--bg); }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid #2e2c28;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: #8d867a; letter-spacing: 0.06em;
}

/* ---------- Editorial story rows (ART / EMOTIONS / STORY) ---------- */
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.editorial-row + .editorial-row { margin-top: clamp(4rem, 10vw, 8rem); }
.editorial-row.reverse .ed-media { order: -1; }
.ed-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.bigword {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 11vw, 8rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.bigword-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
  margin-top: 0.2rem;
}
.editorial-row p.body { color: var(--ink-soft); margin-top: 1.6rem; max-width: 46ch; }

/* ---------- Philosophy ---------- */
.philosophy { text-align: center; }
.philosophy h2 { font-size: clamp(2rem, 5vw, 3.6rem); max-width: 22ch; margin: 0 auto 2.5rem; }
.philosophy .q {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--accent); margin-bottom: 1.4rem;
}
.philosophy p.body { color: var(--ink-soft); max-width: 70ch; margin: 0 auto 1.6rem; text-align: left; }
.philosophy .callout {
  font-family: var(--serif); font-size: clamp(2rem, 6vw, 4rem);
  margin: 2.5rem auto; line-height: 1.1;
}

/* ---------- Service bands ---------- */
.service-band {
  position: relative;
  height: clamp(280px, 42vw, 460px);
  display: grid; place-items: center;
  overflow: hidden;
  text-align: center;
}
.service-band img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 1.2s var(--ease);
}
.service-band:hover img { transform: scale(1.05); }
.service-band::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.40); }
.service-band .label {
  position: relative; z-index: 1; color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- Founder ---------- */
.founder { text-align: center; }
.founder .splash-logo {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  opacity: 0;
  animation: splashFade 2s var(--ease) 0.5s forwards;
}
.doodle-splash {
  color: var(--ink);
  margin-bottom: 1rem;
  overflow: visible;
  /* doodle wiggle effect */
  animation: doodle-wiggle 0.15s infinite alternate;
}
.draw-path {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw-doodle 1.5s var(--ease) forwards;
}

@keyframes draw-doodle {
  to { stroke-dashoffset: 0; }
}
@keyframes doodle-wiggle {
  0% { transform: rotate(-1deg) translate(1px, -1px); }
  50% { transform: rotate(1deg) translate(-1px, 1px); }
  100% { transform: rotate(0deg) translate(0px, 1px); }
}
@keyframes splashFade {
  to { opacity: 1; }
}
.founder .name {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.34em; text-transform: uppercase;
}
.founder .title {
  letter-spacing: 0.34em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--accent); margin: 1.1rem 0 1.8rem;
}
.founder p.body { color: var(--ink-soft); max-width: 62ch; margin: 0 auto 1.8rem; }

/* ---------- Closing CTA text ---------- */
.closing { text-align: center; }
.closing p { color: var(--ink-soft); max-width: 66ch; margin: 0 auto; font-size: 1.02rem; }
.closing a.inline { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- My Motive Section ---------- */
.motive-container {
  max-width: 900px;
  margin: 0 auto;
}
.motive-content .lead {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin: 1.5rem auto 4rem;
  max-width: 28ch;
  color: var(--ink);
}
.motive-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 4rem;
}
.motive-columns p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}
.motive-highlight {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  margin-bottom: 4rem;
  position: relative;
}
.motive-highlight::before, .motive-highlight::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
}
.motive-highlight::before { top: 0; }
.motive-highlight::after { bottom: 0; }
.motive-highlight h4 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 2.5rem;
}
.motive-highlight blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 auto 2rem;
  max-width: 25ch;
  font-style: italic;
}
.motive-highlight p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto;
}
.motive-signature {
  text-align: center;
  margin-top: 2rem;
}
.motive-signature .sig-name {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.motive-signature .sig-title {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}


/* ---------- Neo-Brutalist Splash ---------- */
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-alt);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.splash.hide {
  opacity: 0;
  visibility: hidden;
}

.neo-card {
  font-family: var(--sans);
  width: min(300px, 85vw);
  background: var(--bg);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  transition: all 0.3s ease;
  transform: translate(-4px, -4px);
}
.neo-card:hover {
  transform: translate(-4px, 0px);
}

.neo-head {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  width: 100%;
  background: var(--bg-alt);
  padding: 8px 12px;
  color: var(--ink);
  border-bottom: 3px solid var(--ink);
}

.neo-content {
  padding: 16px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.neo-button {
  padding: 8px 16px;
  margin-top: 15px;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--sans);
  font-weight: 750;
  font-size: 14px;
  background: var(--accent);
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.neo-button:hover {
  transform: translate(1.5px, 1.5px);
  box-shadow: 1.5px 1.5px 0 var(--ink);
  background: var(--ink);
}
.neo-button:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--ink);
  background: var(--ink);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; z-index: 110; }
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    gap: 2.2rem; background: var(--bg);
    transform: translateX(100%); transition: transform .5s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .split, .about-grid, .form-wrap, .pillars, .editorial-row { grid-template-columns: 1fr; }
  .editorial-row.reverse .ed-media { order: -1; }
  .cards { grid-template-columns: 1fr; }
  .film-grid { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .split .split-media { order: -1; }
}

/* Horizontal Video Scroll for Services */
.horizontal-scroll-videos {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0.5rem 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.horizontal-scroll-videos::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}
.horizontal-scroll-videos iframe,
.horizontal-scroll-videos video {
  flex: 0 0 85%;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  scroll-snap-align: center;
  border: none;
  border-radius: 12px;
  background: #000;
  object-fit: cover;
}
.horizontal-scroll-videos.ig-reels iframe {
  aspect-ratio: 9 / 16;
  max-width: 340px;
  background: #fff;
}
.video-frame.ig-frame {
  aspect-ratio: 9 / 16 !important;
  max-width: 450px;
  margin: 0 auto;
  background: #fff;
}

/* Curved Loop Component */
.curved-loop-container {
  width: 100%;
  overflow: hidden;
  margin: 2rem 0;
}
.curved-loop-jacket {
  min-height: 35vh; /* Adjusted from 100vh to fit nicely as a page divider */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  visibility: hidden;
}
.curved-loop-svg {
  user-select: none;
  width: 100%;
  aspect-ratio: 100 / 12;
  overflow: visible;
  display: block;
  font-size: clamp(3.2rem, 6.5vw, 5.2rem); /* Slightly reduced font size for better harmony */
  fill: var(--secondary); /* sage-inspired dark olive instead of solid black or white */
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}


