/* ============================================================
   VISUALLY EPIC — base design system
   Dark cinematic core + light editorial variant (body.light)
   ============================================================ */
:root {
  --void:   #04070d;
  --night:  #070d19;
  --panel:  #0b1424;
  --panel2: #0f1b31;
  --aurora: #43e8a5;
  --aurora-soft: #8dffd2;
  --gold:   #f0a63a;
  --gold-soft: #ffd08a;
  --ice:    #8cccf5;
  --ink:    #edf2fa;
  --mut:    #93a2ba;
  --line:   rgba(148, 178, 220, .14);

  /* light (portraits) palette */
  --paper:  #f5f2ec;
  --paper2: #ece7dd;
  --ink-d:  #1b1811;
}
:root {
  --mut-d:  #6d6555;
  --line-d: rgba(27, 24, 17, .12);
  --disp: 'Syne', sans-serif;
  --body: 'Manrope', sans-serif;
  --serif: 'Fraunces', serif;
  --nav-h: 74px;
  --ease: cubic-bezier(.22, .61, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overscroll-behavior-y: none; }
body {
  font-family: var(--body);
  background: var(--void);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.light { background: var(--paper); color: var(--ink-d); }
img { max-width: 100%; display: block; }

/* ---------- image protection: block drag-out, selection, iOS long-press save ---------- */
img {
  -webkit-user-drag: none;
  user-select: none; -webkit-user-select: none;
  -webkit-touch-callout: none;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(67, 232, 165, .35); }
body.light ::selection { background: rgba(240, 166, 58, .35); }

h1, h2, h3 { font-family: var(--disp); line-height: 1.05; letter-spacing: -.01em; }

.wrap { width: min(1280px, calc(100% - 48px)); margin-inline: auto; }

/* grid children may never force tracks wider than the viewport (image min-content blowout) */
.p-hero-grid > *, .p-book-grid > *, .pitch-grid > *, .about-grid > *,
.contact-grid > *, .coll-grid > *, .p-grid > *, .foot-grid > * { min-width: 0; }

/* ---------- film grain ---------- */
.grain {
  position: fixed; inset: -100px; z-index: 90; pointer-events: none;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(9) infinite;
}
body.light .grain { opacity: .05; }
@keyframes grain {
  0%,100% { transform: translate(0,0) } 12% { transform: translate(-40px,22px) }
  25% { transform: translate(30px,-35px) } 37% { transform: translate(-25px,-20px) }
  50% { transform: translate(45px,30px) } 62% { transform: translate(-35px,10px) }
  75% { transform: translate(20px,-45px) } 87% { transform: translate(-15px,35px) }
}

/* ---------- custom cursor ---------- */
.cur, .cur-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 200; border-radius: 50%; }
.cur { width: 6px; height: 6px; background: var(--aurora); transform: translate(-50%, -50%); }
.cur-ring {
  width: 34px; height: 34px; border: 1px solid rgba(67, 232, 165, .5);
  transform: translate(-50%, -50%); transition: width .25s, height .25s, border-color .25s, background .25s;
}
body.light .cur { background: var(--gold); }
body.light .cur-ring { border-color: rgba(240, 166, 58, .55); }
.cur-ring.hov { width: 58px; height: 58px; background: rgba(67, 232, 165, .08); }
body.light .cur-ring.hov { background: rgba(240, 166, 58, .1); }
@media (pointer: coarse) { .cur, .cur-ring { display: none; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, transform .45s var(--ease);
}
.nav.scrolled {
  background: rgba(5, 9, 17, .72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
body.light .nav.scrolled { background: rgba(245, 242, 236, .8); box-shadow: 0 1px 0 var(--line-d); }
.nav.hide { transform: translateY(-100%); }
.nav-in { display: flex; align-items: center; justify-content: space-between; width: min(1400px, calc(100% - 48px)); margin-inline: auto; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
body.light .brand img { filter: none; }
.brand-name { font-family: var(--disp); font-weight: 700; font-size: .95rem; letter-spacing: .32em; text-transform: uppercase; }
.brand-name b { color: var(--gold); font-weight: 800; }
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a {
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--mut); position: relative; padding: 6px 0; transition: color .3s;
}
body.light .nav-links a { color: var(--mut-d); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: linear-gradient(90deg, var(--aurora), var(--gold));
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
body.light .nav-links a:hover, body.light .nav-links a.active { color: var(--ink-d); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.cta {
  border: 1px solid var(--gold); color: var(--gold-soft); padding: 10px 20px; border-radius: 999px;
  transition: background .3s, color .3s, box-shadow .3s;
}
.nav-links a.cta::after { display: none; }
.nav-links a.cta:hover { background: var(--gold); color: #171003; box-shadow: 0 0 24px rgba(240, 166, 58, .35); }

/* burger */
.burger { display: none; background: none; border: 0; width: 40px; height: 40px; position: relative; z-index: 130; }
.burger span {
  position: absolute; left: 8px; right: 8px; height: 2px; background: var(--ink);
  transition: transform .35s var(--ease), opacity .3s, top .35s var(--ease), background .3s;
}
body.light .burger span { background: var(--ink-d); }
.burger span:nth-child(1) { top: 13px; } .burger span:nth-child(2) { top: 19px; } .burger span:nth-child(3) { top: 25px; }
.menu-open .burger span:nth-child(1) { top: 19px; transform: rotate(45deg); background: var(--ink); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { top: 19px; transform: rotate(-45deg); background: var(--ink); }

/* mobile overlay menu */
.m-menu {
  position: fixed; inset: 0; z-index: 120; background: rgba(4, 7, 13, .96);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center; padding: 0 9vw;
  clip-path: circle(0 at calc(100% - 46px) 37px); transition: clip-path .65s var(--ease);
  visibility: hidden;
}
.menu-open .m-menu { clip-path: circle(150% at calc(100% - 46px) 37px); visibility: visible; }
.m-menu a {
  font-family: var(--disp); font-weight: 700; font-size: clamp(2rem, 8vw, 3.4rem);
  color: var(--ink); padding: 1.2vh 0; opacity: 0; transform: translateY(24px);
  transition: opacity .4s, transform .5s var(--ease), color .3s;
}
.m-menu a span { color: var(--mut); font-size: .5em; margin-right: 18px; font-weight: 500; }
.m-menu a:hover { color: var(--aurora); }
.menu-open .m-menu a { opacity: 1; transform: none; }
.menu-open .m-menu a:nth-child(1) { transition-delay: .12s } .menu-open .m-menu a:nth-child(2) { transition-delay: .18s }
.menu-open .m-menu a:nth-child(3) { transition-delay: .24s } .menu-open .m-menu a:nth-child(4) { transition-delay: .3s }
.menu-open .m-menu a:nth-child(5) { transition-delay: .36s }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: block; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--disp); font-weight: 700; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s, border-color .3s;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn-gold { background: linear-gradient(120deg, var(--gold), #ffc35e); color: #1a1204; box-shadow: 0 6px 30px rgba(240, 166, 58, .25); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(240, 166, 58, .45); }
.btn-ghost { border-color: rgba(67, 232, 165, .45); color: var(--aurora-soft); }
.btn-ghost:hover { background: rgba(67, 232, 165, .1); border-color: var(--aurora); transform: translateY(-2px); }
.btn-dark { background: var(--ink-d); color: var(--paper); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(27, 24, 17, .3); }

/* ---------- section labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .72rem; font-weight: 700; letter-spacing: .34em; text-transform: uppercase; color: var(--aurora);
}
.eyebrow::before { content: ''; width: 44px; height: 1px; background: linear-gradient(90deg, transparent, var(--aurora)); }
body.light .eyebrow { color: #a5762c; }
body.light .eyebrow::before { background: linear-gradient(90deg, transparent, #a5762c); }

/* ---------- reveal animations ---------- */
.rv { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-l { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv-r { opacity: 0; transform: translateX(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv-l.in, .rv-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s } .d2 { transition-delay: .2s } .d3 { transition-delay: .3s } .d4 { transition-delay: .42s }

/* ---------- forms ---------- */
.field { position: relative; margin-bottom: 26px; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(140, 175, 225, .05); border: 1px solid var(--line);
  border-radius: 10px; padding: 17px 16px 15px; color: var(--ink);
  font-family: var(--body); font-size: .95rem; outline: none; resize: vertical;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field select { appearance: none; }
.field select option { background: var(--panel); color: var(--ink); }
.field label {
  position: absolute; left: 14px; top: 16px; font-size: .9rem; color: var(--mut);
  pointer-events: none; transition: all .25s var(--ease); background: transparent; padding: 0 4px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: rgba(67, 232, 165, .6); box-shadow: 0 0 0 3px rgba(67, 232, 165, .12); background: rgba(140, 175, 225, .08);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select.has-val + label {
  top: -9px; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--aurora); background: var(--form-bg, var(--night));
}
.field input, .field textarea { caret-color: var(--aurora); }
.form-note { font-size: .8rem; color: var(--mut); margin-top: 14px; }
.form-msg { display: none; margin-top: 16px; font-weight: 600; font-size: .92rem; }
.form-msg.show { display: block; animation: msgIn .4s var(--ease); }
.form-msg.ok { color: var(--aurora); }
.form-msg.err { color: #ff7d7d; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px) } }

/* light form variant */
body.light .field input, body.light .field textarea, body.light .field select {
  background: rgba(27, 24, 17, .03); border-color: var(--line-d); color: var(--ink-d); caret-color: var(--gold);
}
body.light .field label { color: var(--mut-d); }
body.light .field input:focus, body.light .field textarea:focus, body.light .field select:focus {
  border-color: rgba(165, 118, 44, .55); box-shadow: 0 0 0 3px rgba(165, 118, 44, .12);
}
body.light .field input:focus + label, body.light .field input:not(:placeholder-shown) + label,
body.light .field textarea:focus + label, body.light .field textarea:not(:placeholder-shown) + label,
body.light .field select:focus + label, body.light .field select.has-val + label {
  color: #a5762c; background: var(--form-bg, var(--paper));
}
body.light .field select option { background: var(--paper); color: var(--ink-d); }

/* ---------- footer ---------- */
footer { background: #030509; border-top: 1px solid var(--line); padding: 70px 0 34px; position: relative; z-index: 2; }
body.light footer { background: #14110b; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.foot-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.foot-brand img { height: 52px; }
.foot-brand span { font-family: var(--disp); font-weight: 700; letter-spacing: .3em; font-size: .9rem; color: var(--ink); }
.foot-brand span b { color: var(--gold); }
footer p, footer a { color: var(--mut); font-size: .88rem; }
footer h4 { font-family: var(--disp); font-size: .78rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; }
.foot-links { list-style: none; display: grid; gap: 10px; }
.foot-links a { transition: color .3s, padding-left .3s; }
.foot-links a:hover { color: var(--aurora); padding-left: 6px; }
.foot-base {
  border-top: 1px solid var(--line); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: var(--mut);
}
.foot-base .sig { color: var(--mut); }
.foot-base .sig b { color: var(--gold); font-weight: 600; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- misc ---------- */
.section { padding: 120px 0; position: relative; }
.sec-head { margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(1.8rem, 5vw, 3.6rem); margin-top: 18px; }
.sec-head h2 .g { background: linear-gradient(100deg, var(--gold-soft), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sec-head h2 .a { background: linear-gradient(100deg, var(--aurora-soft), var(--aurora)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sec-head p { color: var(--mut); max-width: 560px; margin-top: 16px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .grain { display: none; }
}

/* ---------- ?static=1 — freeze all motion at the settled state (QA/screenshots) ---------- */
html.no-anim { scroll-behavior: auto !important; }
html.no-anim *, html.no-anim *::before, html.no-anim *::after { animation: none !important; transition: none !important; }
html.no-anim .loader { display: none !important; }
html.no-anim .rv, html.no-anim .rv-l, html.no-anim .rv-r { opacity: 1 !important; transform: none !important; }
html.no-anim .mani-line .w i { transform: none !important; }
html.no-anim .hero-title, html.no-anim .hero-sub, html.no-anim .hero-cta { opacity: 1 !important; transform: none !important; }
html.no-anim .hero { min-height: 860px !important; }
html.no-anim .g-hero { min-height: 620px !important; }

/* keep [hidden] authoritative over display rules below */
[hidden] { display: none !important; }

/* footer Instagram link */
.foot-ig {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; white-space: nowrap;
  padding: 9px 15px 9px 12px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--mut); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.foot-ig svg { flex-shrink: 0; }
.foot-ig:hover {
  color: var(--ink); border-color: var(--gold); background: rgba(240, 166, 58, .1);
  transform: translateY(-2px);
}
