/* Soft Image — editorial edition */

:root {
  --paper: #f4f0e8;
  --paper-2: #ebe5da;
  --ink: #15120f;
  --ink-2: #4a433c;
  --muted: #8a8076;
  --line: rgba(21, 18, 15, .14);
  --gold: #b0906a;
  --night: #0f0d0b;
  --night-2: #1a1714;
  --display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --sans: "Manrope", "Segoe UI", system-ui, sans-serif;
  --wrap: 1360px;
  --gutter: clamp(18px, 4.5vw, 64px);
  --header-h: 96px;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 16px/1.75 var(--sans);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--paper); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 300; }
.skip:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.02; letter-spacing: -.015em; margin: 0; }
h1 em, h2 em, h3 em, .display em { font-style: italic; }
.display-xl { font-size: clamp(3.4rem, 10.5vw, 10.5rem); line-height: .92; letter-spacing: -.03em; }
.display-l  { font-size: clamp(2.8rem, 7vw, 6.4rem); line-height: .96; letter-spacing: -.025em; }
.display-m  { font-size: clamp(2.2rem, 4.6vw, 4.2rem); }
.display-s  { font-size: clamp(1.7rem, 2.8vw, 2.5rem); line-height: 1.1; }
.label {
  display: inline-block; font: 500 .7rem/1.3 var(--sans);
  letter-spacing: .32em; text-transform: uppercase; color: var(--muted);
}
.label--gold { color: var(--gold); }
.label-num { font-family: var(--display); font-style: italic; font-size: 1rem; letter-spacing: 0; text-transform: none; color: var(--gold); margin-right: .7em; }
.prose { font-size: 1.02rem; color: var(--ink-2); max-width: 34em; }
.prose p { margin: 0 0 1.25em; }
.statement { font: 400 clamp(1.6rem, 3.1vw, 2.9rem)/1.22 var(--display); letter-spacing: -.01em; margin: 0; }
.statement em { font-style: italic; color: var(--gold); }
.dropcap::first-letter { float: left; font: 400 5.2em/.8 var(--display); margin: .08em .12em 0 0; color: var(--ink); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* Line-by-line headline reveal */
.lines .ln { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.lines .ln > span { display: inline-block; transform: translateY(105%); transition: transform 1.4s var(--ease); }
.lines.is-in .ln > span { transform: none; }
.lines.is-in .ln:nth-child(2) > span { transition-delay: .12s; }
.lines.is-in .ln:nth-child(3) > span { transition-delay: .24s; }

/* ---------- Links & buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  font: 500 .72rem/1 var(--sans); letter-spacing: .28em; text-transform: uppercase;
  text-decoration: none; padding: 20px 34px; cursor: pointer;
  background: var(--ink); color: var(--paper); border: 1px solid var(--ink);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--line { background: transparent; color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--paper:hover { background: transparent; color: var(--paper); }
.btn--ghost-light { background: transparent; color: var(--paper); border-color: rgba(244,240,232,.55); }
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--wa { background: #1d6b45; border-color: #1d6b45; color: #fff; }
.btn--wa:hover { background: transparent; color: #1d6b45; }
.arrow { width: 34px; height: 1px; background: currentColor; position: relative; transition: width .5s var(--ease); }
.arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover .arrow, .more:hover .arrow { width: 48px; }
.more {
  display: inline-flex; align-items: center; gap: 16px; text-decoration: none;
  font: 500 .72rem/1 var(--sans); letter-spacing: .28em; text-transform: uppercase;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  color: var(--ink);
  transition: background .6s var(--ease), height .6s var(--ease), color .6s var(--ease), transform .6s var(--ease);
}
.site-header .wrap { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.site-header nav { display: flex; gap: clamp(20px, 3vw, 44px); }
.site-header nav:last-of-type { justify-content: flex-end; align-items: center; }
.site-header nav a {
  font: 500 .7rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase;
  text-decoration: none; position: relative; padding: 6px 0;
}
.site-header nav a:not(.hdr-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .6s var(--ease);
}
.site-header nav a:not(.hdr-cta):hover::after, .site-header nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.hdr-cta { border: 1px solid currentColor; padding: 13px 20px !important; transition: background .4s, color .4s; }
.hdr-cta:hover { background: var(--ink); color: var(--paper); }
.brand { display: block; line-height: 0; }
.brand img { height: 64px; width: auto; transition: height .6s var(--ease); }
.brand .logo-light { display: none; }
.site-header.is-scrolled { background: rgba(244, 240, 232, .94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); height: 74px; box-shadow: 0 1px 0 var(--line); }
.site-header.is-scrolled .brand img { height: 50px; }
.site-header.is-hidden { transform: translateY(-100%); }

/* over dark hero */
.on-dark .site-header:not(.is-scrolled) { color: var(--paper); }
.on-dark .site-header:not(.is-scrolled) .logo-dark { display: none; }
.on-dark .site-header:not(.is-scrolled) .logo-light { display: block; }
.on-dark .site-header:not(.is-scrolled) .hdr-cta:hover { background: var(--paper); color: var(--ink); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px 0; justify-self: end;
  font: 500 .7rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; }

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 90; background: var(--night); color: var(--paper);
  display: flex; flex-direction: column; justify-content: center; padding: 0 var(--gutter);
  clip-path: inset(0 0 100% 0); transition: clip-path .9s var(--ease); visibility: hidden;
}
.menu a { font: 400 clamp(2.6rem, 11vw, 4rem)/1.15 var(--display); text-decoration: none; display: block; }
.menu a em { font-style: italic; color: var(--gold); }
.menu .label { margin-top: 40px; color: rgba(244,240,232,.55); }
.menu-open .menu { clip-path: inset(0 0 0 0); visibility: visible; }
.menu-open { overflow: hidden; }
.menu-open .site-header { color: var(--paper) !important; background: transparent !important; box-shadow: none !important; }
.menu-open .site-header .logo-dark { display: none !important; }
.menu-open .site-header .logo-light { display: block !important; }

@media (max-width: 900px) {
  :root { --header-h: 76px; }
  .site-header .wrap { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .brand { order: -1; }
  .brand img { height: 50px; }
  .site-header.is-scrolled { height: 64px; }
  .site-header.is-scrolled .brand img { height: 42px; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 600px; background: var(--night); color: var(--paper); overflow: hidden; }
.hero__media, .hero__media > * { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media video { object-fit: cover; }
.hero__slides img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.12); transition: opacity 2.2s ease, transform 9s linear;
}
.hero__slides img.is-active { opacity: 1; transform: scale(1); }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,8,6,.55) 0%, rgba(10,8,6,0) 28%, rgba(10,8,6,0) 45%, rgba(10,8,6,.78) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(10,8,6,.45), transparent 60%);
}
.hero__inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(36px, 6vh, 64px); }
.hero__kicker { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: clamp(18px, 3vh, 34px); }
.hero__kicker .label { color: rgba(244,240,232,.75); }
.hero h1 { margin-bottom: clamp(28px, 5vh, 52px); }
.hero h1 em { color: #e6d3b8; }
.hero__foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; border-top: 1px solid rgba(244,240,232,.25); padding-top: 24px; }
.hero__foot p { margin: 0; max-width: 30em; color: rgba(244,240,232,.8); font-size: .95rem; }
.hero__count { font: italic 400 1.1rem/1 var(--display); color: rgba(244,240,232,.8); }
.hero__count b { font-weight: 400; color: var(--paper); }
@media (max-width: 700px) {
  .hero__kicker { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero__foot .btn { width: 100%; justify-content: center; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(96px, 13vw, 190px) 0; }
.section--tight { padding: clamp(64px, 8vw, 110px) 0; }
.section--night { background: var(--night); color: var(--paper); }
.section--night .label { color: rgba(244,240,232,.55); }
.section--night .prose { color: rgba(244,240,232,.72); }
.section--paper2 { background: var(--paper-2); }
.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: clamp(48px, 7vw, 100px); }
.sec-head .prose { justify-self: end; margin: 0; }
@media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; gap: 24px; } .sec-head .prose { justify-self: start; } }

/* Image reveal (curtain wipe) */
.frame { position: relative; overflow: hidden; background: var(--paper-2); }
.frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); transition: transform 1.8s var(--ease); }
.frame::after { content: ""; position: absolute; inset: 0; background: var(--paper); transform-origin: top; transition: transform 1.3s var(--ease); }
.section--night .frame::after { background: var(--night); }
.section--paper2 .frame::after { background: var(--paper-2); }
.frame.is-in img { transform: scale(1); }
.frame.is-in::after { transform: scaleY(0); }
.cap { display: flex; justify-content: space-between; gap: 16px; margin-top: 14px; font-size: .78rem; color: var(--muted); }
.cap i { font-family: var(--display); font-size: .95rem; color: var(--ink-2); }
.section--night .cap i { color: rgba(244,240,232,.8); }

.fade { opacity: 0; transform: translateY(40px); transition: opacity 1.4s var(--ease), transform 1.4s var(--ease); }
.fade.is-in { opacity: 1; transform: none; }

/* Studio statement */
.intro { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 clamp(16px, 2vw, 32px); align-items: start; }
.intro__label { grid-column: 1 / 4; padding-top: 12px; }
.intro__text { grid-column: 4 / 11; }
.intro__text .statement { margin-bottom: 48px; }
.intro__imgs { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 32px); margin-top: clamp(64px, 9vw, 130px); align-items: end; }
.intro__imgs .a { grid-column: 1 / 6; }
.intro__imgs .a .frame { aspect-ratio: 4 / 5; }
.intro__imgs .b { grid-column: 7 / 13; }
.intro__imgs .b .frame { aspect-ratio: 3 / 2; }
.intro__imgs .b .prose { margin-top: 36px; }
@media (max-width: 900px) {
  .intro__label, .intro__text { grid-column: 1 / -1; }
  .intro__label { margin-bottom: 24px; }
  .intro__imgs .a { grid-column: 1 / 9; }
  .intro__imgs .b { grid-column: 3 / -1; margin-top: 32px; }
}

/* Marquee */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; white-space: nowrap; }
.marquee__track { display: inline-flex; animation: marquee 38s linear infinite; }
.marquee span { font: italic 400 clamp(2rem, 4.5vw, 3.8rem)/1 var(--display); padding: 0 .5em; }
.marquee span:nth-child(even) { font-style: normal; color: var(--gold); font-size: clamp(1.2rem, 2vw, 1.6rem); align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Stories (magazine spreads) */
.story { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 32px); align-items: center; }
.story + .story { margin-top: clamp(96px, 12vw, 180px); }
.story__img { grid-column: 1 / 8; }
.story__img .frame { aspect-ratio: 5 / 4; }
.story__img--tall .frame { aspect-ratio: 4 / 5; }
.story__text { grid-column: 9 / 13; }
.story--flip .story__img { grid-column: 6 / 13; grid-row: 1; }
.story--flip .story__text { grid-column: 1 / 5; grid-row: 1; }
.story__num { font: italic 400 clamp(5rem, 10vw, 9rem)/.8 var(--display); color: var(--gold); opacity: .5; display: block; margin-bottom: 20px; }
.story__text h3 { margin: 16px 0 24px; }
.story__text .prose { margin-bottom: 32px; }
.story__side { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.story__side .frame { aspect-ratio: 1; }
@media (max-width: 900px) {
  .story__img, .story--flip .story__img { grid-column: 1 / -1; grid-row: 1; }
  .story__text, .story--flip .story__text { grid-column: 1 / -1; grid-row: 2; margin-top: 32px; }
  .story__num { font-size: 4.2rem; }
}

/* Chapters (services) */
.chapters { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.chapter { text-decoration: none; display: block; }
.chapter .frame { aspect-ratio: 3 / 4.2; margin-bottom: 22px; }
.chapter .frame img { transition: transform 1.8s var(--ease), filter .8s; }
.chapter:hover .frame img { transform: scale(1.05); }
.chapter:nth-child(even) { margin-top: 90px; }
.chapter h3 { font-size: 1.9rem; margin: 10px 0 12px; }
.chapter p { margin: 0; color: rgba(244,240,232,.68); font-size: .92rem; }
@media (max-width: 1000px) { .chapters { grid-template-columns: 1fr 1fr; } .chapter:nth-child(even) { margin-top: 60px; } }
@media (max-width: 520px) { .chapters { grid-template-columns: 1fr; } .chapter:nth-child(even) { margin-top: 0; } }

/* Pull quote */
.pull { text-align: center; max-width: 1100px; margin: 0 auto; }
.pull blockquote { margin: 0 0 36px; font: italic 400 clamp(1.9rem, 4.4vw, 3.9rem)/1.15 var(--display); letter-spacing: -.015em; }
.pull blockquote::before { content: "\201C"; display: block; font-size: 1.8em; line-height: .5; color: var(--gold); margin-bottom: .25em; }

/* CTA */
.cta { position: relative; min-height: 88vh; display: flex; align-items: center; color: var(--paper); background: var(--night); overflow: hidden; }
.cta__bg { position: absolute; inset: -12% 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.cta .wrap { position: relative; z-index: 1; width: 100%; text-align: center; }
.cta h2 { margin: 24px 0 28px; }
.cta p { max-width: 30em; margin: 0 auto 44px; color: rgba(244,240,232,.8); }
.cta .label { color: #e6d3b8; }

/* ---------- Page heads ---------- */
.page-head { padding-top: calc(var(--header-h) + clamp(60px, 9vw, 130px)); padding-bottom: clamp(48px, 6vw, 90px); }
.page-head__row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: end; }
.page-head h1 { grid-column: 1 / 9; }
.page-head .prose { grid-column: 9 / 13; margin: 0; }
.page-head .label { margin-bottom: 28px; }
@media (max-width: 900px) { .page-head h1, .page-head .prose { grid-column: 1 / -1; } }

/* ---------- Portfolio ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px 36px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: clamp(40px, 6vw, 80px); }
.filters button {
  background: none; border: 0; cursor: pointer; padding: 6px 0; color: var(--muted);
  font: 400 1.35rem/1 var(--display); transition: color .3s;
}
.filters button sup { font: 500 .6rem/1 var(--sans); letter-spacing: .1em; margin-left: 4px; vertical-align: top; }
.filters button:hover { color: var(--ink); }
.filters button[aria-pressed="true"] { color: var(--ink); font-style: italic; }
.gallery { columns: 3 300px; column-gap: clamp(16px, 2.2vw, 36px); }
.gallery figure { margin: 0 0 clamp(28px, 3.5vw, 56px); break-inside: avoid; }
.gallery figure[hidden] { display: none; }
.gallery a { display: block; cursor: zoom-in; }
.gallery .frame img { transition: transform 1.8s var(--ease); }
.gallery a:hover .frame img { transform: scale(1.04); }
@media (max-width: 560px) { .gallery { columns: 1; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 400; background: var(--night); color: var(--paper);
  display: grid; grid-template-rows: auto 1fr auto; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__top, .lightbox__bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px var(--gutter); }
.lightbox__top .label { color: rgba(244,240,232,.6); }
.lightbox__stage { display: flex; align-items: center; justify-content: center; min-height: 0; padding: 0 var(--gutter); }
.lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; transition: opacity .35s; }
.lightbox button { background: none; border: 0; cursor: pointer; color: var(--paper); font: 500 .7rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; padding: 12px 0; display: inline-flex; align-items: center; gap: 14px; }
.lightbox button:hover { color: #e6d3b8; }
.lightbox__prev .arrow { transform: scaleX(-1); }
.lightbox__count { font: italic 400 1.1rem/1 var(--display); }

/* ---------- About ---------- */
.about-hero { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: end; }
.about-hero h1 { grid-column: 1 / 13; position: relative; z-index: 2; }
.about-hero .frame { grid-column: 5 / 13; aspect-ratio: 16 / 10; margin-top: -0.35em; }
.about-hero .aside { grid-column: 1 / 5; align-self: end; }
@media (max-width: 900px) { .about-hero .frame, .about-hero .aside { grid-column: 1 / -1; } .about-hero .frame { margin-top: 24px; } }
.twocol { columns: 2 320px; column-gap: clamp(32px, 5vw, 80px); color: var(--ink-2); }
.twocol p { margin: 0 0 1.25em; }
.approach { list-style: none; margin: 0; padding: 0; counter-reset: a; }
.approach li { display: grid; grid-template-columns: 120px 1fr 1.2fr; gap: 32px; padding: 40px 0; border-top: 1px solid rgba(244,240,232,.18); align-items: baseline; }
.approach li:last-child { border-bottom: 1px solid rgba(244,240,232,.18); }
.approach li::before { counter-increment: a; content: "0" counter(a); font: italic 400 1.4rem/1 var(--display); color: var(--gold); }
.approach h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.approach p { margin: 0; color: rgba(244,240,232,.7); }
@media (max-width: 800px) { .approach li { grid-template-columns: 1fr; gap: 12px; } }
.includes { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.includes > div:first-child { grid-column: 1 / 5; }
.includes ul { grid-column: 6 / 13; list-style: none; margin: 0; padding: 0; }
.includes li { display: flex; gap: 24px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); font: 400 clamp(1.3rem, 2vw, 1.7rem)/1.3 var(--display); }
.includes li span { font: 500 .7rem/1 var(--sans); letter-spacing: .2em; color: var(--gold); min-width: 2em; }
@media (max-width: 900px) { .includes > div:first-child, .includes ul { grid-column: 1 / -1; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 3vw, 48px); }
.contact-card { grid-column: 1 / 6; position: relative; color: var(--paper); background: var(--night); padding: clamp(32px, 4vw, 56px); overflow: hidden; align-self: start; }
.contact-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.contact-card > *:not(img) { position: relative; }
.contact-card dl { margin: 36px 0 40px; }
.contact-card dt { font: 500 .66rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: rgba(244,240,232,.55); margin-bottom: 10px; }
.contact-card dd { margin: 0 0 28px; font: 400 clamp(1.25rem, 2vw, 1.6rem)/1.2 var(--display); word-break: break-word; }
.contact-card dd a { text-decoration: none; }
.contact-card dd.small { font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.contact-card dd a:hover { color: #e6d3b8; }
.form { grid-column: 7 / 13; display: grid; grid-template-columns: 1fr 1fr; gap: 34px 28px; align-content: start; }
.form .full { grid-column: 1 / -1; }
.field label { display: block; font: 500 .66rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 10px 0 12px; background: transparent; border: 0; border-bottom: 1px solid rgba(21,18,15,.3); border-radius: 0;
  font: 400 1.35rem/1.3 var(--display); color: var(--ink); transition: border-color .3s;
}
.field textarea { min-height: 120px; resize: vertical; font-size: 1.2rem; }
.field input::placeholder, .field textarea::placeholder { color: rgba(21,18,15,.3); font-style: italic; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-bottom-color: var(--ink); }
.form__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.form__status { grid-column: 1 / -1; margin: 0; min-height: 1.5em; }
.form__status.ok { color: #2d6a43; }
.form__status.err { color: #9b3524; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 900px) { .contact-card, .form { grid-column: 1 / -1; } }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; } .form__actions .btn { width: 100%; justify-content: center; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: var(--paper); padding: clamp(80px, 10vw, 140px) 0 32px; overflow: hidden; }
.footer__big { display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap; padding-bottom: clamp(56px, 7vw, 100px); border-bottom: 1px solid rgba(244,240,232,.16); }
.footer__big h2 a { text-decoration: none; }
.footer__big h2 em { color: #e6d3b8; }
.footer__big h2 a:hover em { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .12em; }
.footer__big img { height: 120px; width: auto; }
.footer__cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 48px 0; }
.footer__cols h4 { font: 500 .66rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: rgba(244,240,232,.5); margin: 0 0 20px; }
.footer__cols ul { list-style: none; margin: 0; padding: 0; }
.footer__cols li { margin-bottom: 10px; }
.footer__cols a { text-decoration: none; color: rgba(244,240,232,.85); }
.footer__cols a:hover { color: #e6d3b8; }
.footer__cols p { color: rgba(244,240,232,.6); max-width: 24em; margin: 0; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .78rem; color: rgba(244,240,232,.45); }
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: var(--paper); }
@media (max-width: 760px) { .footer__cols { grid-template-columns: 1fr; gap: 32px; } .footer__big img { height: 84px; } }

/* WhatsApp float */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.2); transition: transform .4s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; fill: currentColor; }
.menu-open .wa-float { display: none; }

/* Credits */
.credits { list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.credits li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.credits strong { font-weight: 500; color: var(--ink); }

/* No-JS & reduced motion */
.no-js .fade, .no-js .lines .ln > span { opacity: 1; transform: none; }
.no-js .frame::after { transform: scaleY(0); }
.no-js .frame img { transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01s !important; transition-delay: 0s !important; }
  .hero__slides img { transform: none !important; }
}

/* ======================================================
   Production (films & live streaming) — cinematic dark theme
   ====================================================== */
body.cine {
  --paper: #0c0b0b;
  --paper-2: #141212;
  --ink: #f1ede6;
  --ink-2: #b3aca3;
  --muted: #7f786f;
  --line: rgba(241, 237, 230, .12);
  --gold: #e0533d;
  --night: #060505;
}
.cine .site-header.is-scrolled { background: rgba(12, 11, 11, .9); }
.cine .site-header .logo-dark { display: none; }
.cine .site-header .logo-light { display: block; }
.cine .hdr-cta:hover { background: var(--ink); color: var(--paper); }
.cine ::selection { background: var(--gold); color: #fff; }
.cine .site-footer, .cine .menu, .cine .lightbox { color: #f1ede6; }
.cine.menu-open .site-header { color: #f1ede6 !important; }

/* film grain */
.cine::after {
  content: ""; position: fixed; inset: -50%; z-index: 500; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(4) infinite;
}
@keyframes grain { 0% { transform: translate(0,0); } 25% { transform: translate(-4%,3%); } 50% { transform: translate(3%,-4%); } 75% { transform: translate(-2%,-3%); } 100% { transform: translate(0,0); } }

.rec { display: inline-flex; align-items: center; gap: 10px; font: 500 .7rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; }
.rec::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); animation: rec 1.4s steps(1) infinite; }
@keyframes rec { 50% { opacity: 0; } }
.timecode { font: 500 .78rem/1 ui-monospace, "SFMono-Regular", Consolas, monospace; letter-spacing: .12em; color: rgba(241,237,230,.75); font-variant-numeric: tabular-nums; }

/* Hero: letterboxed frame */
.c-hero { position: relative; height: 100vh; height: 100svh; min-height: 620px; background: #000; overflow: hidden; }
.c-hero__frame { position: absolute; left: 0; right: 0; top: 11vh; bottom: 11vh; overflow: hidden; }
.c-hero__frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.08); animation: heroZoomC 20s ease-out both; }
.c-hero__frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%), linear-gradient(180deg, transparent 50%, rgba(0,0,0,.6)); }
@keyframes heroZoomC { from { transform: scale(1.1); } to { transform: scale(1); } }
.c-hero__ui { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; }
.c-hero__top { height: 11vh; }
.c-hero__body { flex: 1; width: 100%; display: flex; flex-direction: column; justify-content: center; }
.c-hero__body h1 { margin: 24px 0 26px; max-width: 10.5em; }
.c-hero__body h1 em { color: var(--gold); }
.c-hero__body p { max-width: 31em; color: rgba(241,237,230,.8); margin: 0 0 34px; }
.c-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.c-hero__bar { height: 11vh; display: flex; align-items: center; }
.c-hero__bar .wrap { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.c-hero__bar span { font: 500 .66rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; color: rgba(241,237,230,.5); }
.corner { position: absolute; width: 22px; height: 22px; border-color: rgba(241,237,230,.55); border-style: solid; border-width: 0; z-index: 3; }
.corner.tl { top: calc(11vh + 18px); left: 18px; border-top-width: 1px; border-left-width: 1px; }
.corner.tr { top: calc(11vh + 18px); right: 18px; border-top-width: 1px; border-right-width: 1px; }
.corner.bl { bottom: calc(11vh + 18px); left: 18px; border-bottom-width: 1px; border-left-width: 1px; }
.corner.br { bottom: calc(11vh + 18px); right: 18px; border-bottom-width: 1px; border-right-width: 1px; }
@media (max-width: 700px) {
  .c-hero__frame { top: 9vh; bottom: 9vh; }
  .c-hero__top, .c-hero__bar { height: 9vh; }
  .c-hero__bar span.hide-sm { display: none; }
  .corner { display: none; }
  .c-hero__actions .btn { flex: 1 1 100%; justify-content: center; }
}
.btn--red { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn--red:hover { background: transparent; color: var(--ink); border-color: var(--gold); }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 32px); }
.service { border-top: 1px solid var(--line); padding-top: 22px; }
.service .frame { aspect-ratio: 16 / 10; margin: 22px 0 26px; }
.service h3 { font-size: clamp(1.8rem, 2.5vw, 2.3rem); margin: 10px 0 14px; }
.service h3 em { color: var(--gold); }
.service > p { color: var(--ink-2); margin: 0 0 18px; }
.service ul { list-style: none; margin: 0; padding: 0; font-size: .92rem; color: var(--ink-2); }
.service li { padding: 10px 0; border-top: 1px solid var(--line); display: flex; gap: 12px; }
.service li::before { content: "\25B8"; color: var(--gold); font-size: .8em; }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }

/* Film cards */
.films { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 36px) clamp(16px, 2vw, 28px); }
.films figure { margin: 0; }
.films figure[hidden] { display: none; }
.film { display: block; position: relative; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; text-align: left; color: inherit; }
.film .frame { aspect-ratio: 16 / 9; }
.film .frame img { filter: saturate(.85); transition: transform 1.8s var(--ease), filter .6s; }
.film:hover .frame img { transform: scale(1.04); filter: saturate(1); }
.play {
  position: absolute; z-index: 2; left: 50%; top: 50%; width: 68px; height: 68px; margin: -34px 0 0 -34px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.7); display: grid; place-items: center;
  background: rgba(0,0,0,.25); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: transform .5s var(--ease), background .4s, border-color .4s;
}
.play::after { content: ""; margin-left: 5px; border-left: 15px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; }
.film:hover .play { transform: scale(1.1); background: var(--gold); border-color: var(--gold); }
.film .badge { position: absolute; z-index: 2; left: 12px; top: 12px; font: 500 .6rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; background: rgba(0,0,0,.65); color: #fff; padding: 7px 10px; }
.film[aria-disabled="true"] { cursor: default; }
.film[aria-disabled="true"] .play { opacity: .6; }
.film[aria-disabled="true"]:hover .play { transform: none; background: rgba(0,0,0,.25); border-color: rgba(255,255,255,.7); }
.films h3 { font-size: 1.35rem; margin: 16px 0 4px; }
.films .cap { margin-top: 6px; }
@media (max-width: 900px) { .films { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .films { grid-template-columns: 1fr; } }

/* Video modal */
.vmodal { position: fixed; inset: 0; z-index: 450; background: rgba(0,0,0,.94); display: flex; justify-content: center; align-items: center; padding: 0 var(--gutter);
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.vmodal.is-open { opacity: 1; visibility: visible; }
.vmodal__box { width: min(1200px, 100%); aspect-ratio: 16 / 9; background: #000; }
.vmodal__box iframe { width: 100%; height: 100%; border: 0; display: block; }
.vmodal__close { position: absolute; top: 20px; right: var(--gutter); background: none; border: 0; color: #fff; cursor: pointer; font: 500 .7rem/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; padding: 12px 0; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: s; border-top: 1px solid var(--line); padding: 0; margin: 0; }
.steps li { list-style: none; padding: 28px 24px 8px 0; }
.steps li + li { padding-left: 24px; border-left: 1px solid var(--line); }
.steps li::before { counter-increment: s; content: "0" counter(s); display: block; font: italic 400 2.6rem/1 var(--display); color: var(--gold); margin-bottom: 26px; }
.steps h3 { font-size: 1.5rem; margin-bottom: 10px; }
.steps p { margin: 0; color: var(--ink-2); font-size: .94rem; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .steps li:nth-child(3) { padding-left: 0; border-left: 0; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } .steps li + li { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); } }

/* Closing contact */
.c-contact { text-align: center; }
.c-contact h2 { margin: 22px 0 26px; }
.c-contact h2 em { color: var(--gold); }
.c-contact .prose { margin: 0 auto 44px; }
.c-contact__btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.c-contact__meta { margin-top: 36px; color: var(--muted); font-size: .9rem; }
.c-contact__meta a { text-decoration: none; }
.c-contact__meta a:hover { color: var(--ink); }

/* Home teaser */
.teaser { background: #0c0b0b; color: #f1ede6; overflow: hidden; }
.teaser__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2vw, 32px); align-items: center; }
.teaser__img { grid-column: 1 / 8; }
.teaser__img a { display: block; position: relative; }
.teaser__img .frame { aspect-ratio: 16 / 9; background: #141212; }
.teaser__img .frame::after { background: #0c0b0b; }
.teaser__img a:hover .play { transform: scale(1.1); background: #e0533d; border-color: #e0533d; }
.teaser__text { grid-column: 9 / 13; }
.teaser .rec { color: rgba(241,237,230,.75); }
.teaser .rec::before { background: #e0533d; box-shadow: 0 0 12px #e0533d; }
.teaser h2 { margin: 18px 0 24px; }
.teaser h2 em { color: #e0533d; }
.teaser .prose { color: #b3aca3; margin-bottom: 34px; }
.teaser .btn { background: #f1ede6; color: #0c0b0b; border-color: #f1ede6; }
.teaser .btn:hover { background: transparent; color: #f1ede6; }
@media (max-width: 900px) { .teaser__img, .teaser__text { grid-column: 1 / -1; } }
@media (prefers-reduced-motion: reduce) { .cine::after { display: none; } }
