/* =============================================================
   LCLIP STUDIOS — Editorial Dark Warm · accent #bd0f0f
   ============================================================= */

/* 1. Tokens ---------------------------------------------------- */
:root {
  --bg:       #0d0a09;
  --bg-2:     #141010;
  --bg-3:     #1b1513;
  --bg-card:  #18120f;

  --cream:    #f3ece1;
  --cream-2:  #d7cbb9;
  --cream-3:  #8c7e6c;

  --accent:   #bd0f0f;   /* brand red */
  --accent-2: #e23320;   /* brighter glow red */
  --gold:     #c9a45b;

  --line:     rgba(243, 236, 225, 0.12);
  --line-2:   rgba(243, 236, 225, 0.07);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;

  --maxw: 1280px;
  --gutter: clamp(1.2rem, 5vw, 4.5rem);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius: 18px;
}

/* 2. Reset & base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.04; letter-spacing: -0.02em; font-weight: 600; }
::selection { background: var(--accent); color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* 3. Helpers -------------------------------------------------- */
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--cream-3);
}
.kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(226,51,32,.6);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(226,51,32,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(226,51,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,51,32,0); }
}

em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent-2);
}

.section-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.section-head .kicker { margin-bottom: 1.1rem; }
.section-title {
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  line-height: 1.02;
}
.section-lead {
  margin: 1.3rem auto 0; max-width: 46ch;
  color: var(--cream-2); font-size: clamp(1rem, 1.6vw, 1.12rem);
}

/* Reveal ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }  /* defensive */

/* 4. Buttons -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.7rem; border-radius: 100px;
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  transition: transform .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out), box-shadow .35s var(--ease-out);
  will-change: transform;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 30px -10px rgba(189,15,15,.7);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(226,51,32,.8);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(243,236,225,.02);
}
.btn-ghost:hover { border-color: var(--cream-3); transform: translateY(-2px); }

/* 5. Cursor --------------------------------------------------- */
.cursor { position: fixed; inset: 0; z-index: 9000; pointer-events: none; opacity: 0; transition: opacity .3s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--accent-2); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(243,236,225,.4); transition: width .25s var(--ease-out), height .25s var(--ease-out), border-color .25s; }
.cursor.is-hover .cursor-ring { width: 54px; height: 54px; border-color: var(--accent-2); }
@media (hover: none) { .cursor { display: none; } }

/* 6. Splash --------------------------------------------------- */
.splash {
  position: fixed; inset: 0; z-index: 9500;
  display: grid; place-items: center;
  background: var(--bg);
  animation: splashSafety .01s 4.4s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .7s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
.splash-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.splash-mark {
  width: 96px; height: 96px; border-radius: 18px; object-fit: cover;
  box-shadow: 0 0 0 2px var(--accent), 0 10px 30px -8px rgba(189,15,15,.6);
  animation: splashPop .9s var(--ease-bounce) both;
}
.splash-name {
  font-size: .78rem; letter-spacing: .42em; color: var(--cream-3); text-transform: uppercase;
  opacity: 0; animation: fadeUp .7s .4s var(--ease-out) forwards;
}
@keyframes splashPop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* 7. Nav ------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  transition: background .4s var(--ease-out), backdrop-filter .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13,10,9,.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--line-2);
  padding-block: .65rem;
}
.nav-brand { display: inline-flex; align-items: center; gap: .7rem; }
.nav-brand img { height: 44px; width: 44px; border-radius: 11px; object-fit: cover; box-shadow: 0 0 0 1px var(--line), 0 6px 16px -6px rgba(0,0,0,.6); }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-text strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--cream); letter-spacing: .01em; }
.nav-brand-text em { font-family: var(--sans); font-style: normal; font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--cream-3); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .94rem; color: var(--cream-2); position: relative; transition: color .3s; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--accent-2); transition: width .35s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover { color: var(--cream); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: .55rem 1.1rem; border: 1px solid var(--line);
  border-radius: 100px; color: var(--cream);
  transition: background .3s, border-color .3s, color .3s;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 26px; height: 2px; background: var(--cream); transition: transform .35s var(--ease-out), opacity .3s; }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

/* 8. Hero ----------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 7rem var(--gutter) 4rem;
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 22% 28%, rgba(189,15,15,.55) 0%, transparent 60%),
    radial-gradient(45% 45% at 82% 70%, rgba(226,51,32,.32) 0%, transparent 62%),
    radial-gradient(40% 40% at 60% 18%, rgba(201,164,91,.14) 0%, transparent 60%);
  filter: blur(70px) saturate(130%);
  animation: meshDrift 22s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.18) translate(2%, -3%); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .055;
  mix-blend-mode: overlay;
  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='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-title {
  font-size: clamp(2.8rem, 8.2vw, 6.4rem);
  line-height: .98; margin-top: 1.4rem;
  letter-spacing: -0.03em;
}
.hero-sub {
  margin-top: 1.6rem; max-width: 42ch;
  color: var(--cream-2); font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }

.hero-stats {
  list-style: none; display: flex; flex-wrap: wrap; gap: clamp(1.4rem, 4vw, 3rem);
  margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--cream); line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--cream-3); margin-top: .4rem; max-width: 16ch; }

.hero-figure { position: relative; max-width: 360px; margin-left: auto; }
.hero-photo-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8);
  transform-style: preserve-3d; will-change: transform;
}
.hero-photo-wrap img { width: 100%; aspect-ratio: 9/16; object-fit: cover; object-position: center top; }
.hero-photo-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(13,10,9,.65) 100%);
}
.hero-figure figcaption {
  margin-top: .9rem; text-align: center;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-3);
}
.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: inline-flex; align-items: center; gap: .55rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-3);
}
.hero-scroll span {
  width: 22px; height: 34px; border: 1px solid var(--line); border-radius: 12px; position: relative;
}
.hero-scroll span::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 3px; background: var(--accent-2);
  animation: scrollDot 1.8s var(--ease-out) infinite;
}
@keyframes scrollDot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 100%{opacity:0;transform:translate(-50%,12px)} }

/* 9. Marquee -------------------------------------------------- */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line-2);
  background: var(--bg-2); padding-block: 1.1rem;
}
.marquee-track {
  display: flex; align-items: center; gap: 2.2rem; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  color: var(--cream-2); white-space: nowrap;
}
.marquee-track i { color: var(--accent-2); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* 10. Work ---------------------------------------------------- */
.work { padding-bottom: clamp(3rem, 7vw, 6rem); }
.work-block { max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem,5vw,3.5rem) var(--gutter); }
.work-block-head {
  display: grid; grid-template-columns: auto 1fr; column-gap: 1.2rem; row-gap: .3rem;
  align-items: baseline; margin-bottom: 2rem;
  border-bottom: 1px solid var(--line); padding-bottom: 1.3rem;
}
.work-block-index {
  font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.2rem); color: var(--accent-2); grid-row: span 2;
}
.work-block-head h3 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.work-block-head p { color: var(--cream-3); grid-column: 2; font-size: .98rem; max-width: 48ch; }

.reel-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem);
}
.reel-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
.reel-grid--one { grid-template-columns: 1fr; max-width: 340px; }
.reel { will-change: transform; }
.reel-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 9/16; background: var(--bg-3); border: 1px solid var(--line);
  transition: box-shadow .4s var(--ease-out), border-color .4s;
}
.reel-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out), filter .5s; filter: saturate(1.05);
}
.reel:hover .reel-media { border-color: rgba(226,51,32,.5); box-shadow: 0 24px 50px -22px rgba(189,15,15,.55); }
.reel:hover .reel-media img { transform: scale(1.07); filter: saturate(1.2) brightness(1.05); }
.reel-play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(189,15,15,.86); backdrop-filter: blur(4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  transition: transform .35s var(--ease-bounce), background .3s;
}
.reel-play svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.reel:hover .reel-play { transform: scale(1.12); background: var(--accent-2); }
.reel-cap { margin-top: .85rem; font-size: .9rem; color: var(--cream-2); letter-spacing: .01em; }

/* 10a. Studio / Why ------------------------------------------- */
.studio { padding: clamp(3.5rem, 8vw, 6.5rem) var(--gutter); background: var(--bg-2); border-block: 1px solid var(--line-2); }
.studio-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.studio-figure {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-3);
  box-shadow: 0 36px 70px -30px rgba(0,0,0,.75);
}
.studio-figure::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(189,15,15,.18);
  background: radial-gradient(120% 80% at 50% 0%, transparent 60%, rgba(189,15,15,.12) 100%);
}
.studio-figure img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.studio-copy .kicker { margin-bottom: 1rem; }
.studio-copy .section-title { text-align: left; font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
.studio-copy > p { margin-top: 1.2rem; color: var(--cream-2); max-width: 56ch; }
.studio-points { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.1rem; }
.studio-points li { display: flex; gap: 1rem; }
.studio-point-num { font-family: var(--serif); font-size: 1.1rem; color: var(--accent-2); flex-shrink: 0; padding-top: .15rem; min-width: 1.6rem; }
.studio-points strong { display: block; color: var(--cream); font-weight: 600; font-size: 1.04rem; }
.studio-points p { color: var(--cream-3); font-size: .94rem; margin-top: .25rem; max-width: 52ch; }
.studio-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.studio-cta span { color: var(--cream-3); font-size: .9rem; max-width: 24ch; }

/* 10b. Industries / niches ------------------------------------ */
.industries { padding-bottom: clamp(3rem, 7vw, 6rem); }
.niche-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(.9rem, 2vw, 1.4rem);
}
.niche-grid > * { flex: 0 1 calc(33.333% - 1rem); }
.niche {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; border: 1px solid var(--line); background: var(--bg-3);
  will-change: transform; transition: box-shadow .4s var(--ease-out), border-color .4s;
}
.niche img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out), filter .5s; filter: saturate(1.02) brightness(.92); }
.niche-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,10,9,.1) 0%, rgba(13,10,9,.2) 45%, rgba(13,10,9,.88) 100%); transition: background .4s; }
.niche h3 { position: absolute; left: 1.2rem; bottom: 1.05rem; z-index: 2; font-size: clamp(1.2rem, 2.2vw, 1.55rem); color: var(--cream); }
.niche:hover { border-color: rgba(226,51,32,.5); box-shadow: 0 24px 50px -22px rgba(189,15,15,.55); }
.niche:hover img { transform: scale(1.07); filter: saturate(1.18) brightness(1.02); }
.niche::after { content: ""; position: absolute; left: 1.25rem; bottom: .8rem; width: 0; height: 2px; background: var(--accent-2); z-index: 2; transition: width .4s var(--ease-out); }
.niche:hover::after { width: 2.4rem; }
.niche--cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  text-align: center; background: var(--bg-card); aspect-ratio: 4/5;
  border-style: dashed; border-color: var(--line);
}
.niche--cta:hover { border-color: var(--accent-2); background: var(--bg-3); }
.niche-cta-plus { font-family: var(--serif); font-size: 2.6rem; color: var(--accent-2); line-height: 1; }
.niche--cta h3 { position: static; left: auto; bottom: auto; }
.niche--cta p { color: var(--cream-3); font-size: .9rem; }
.niche--cta::after { display: none; }

/* 11. About --------------------------------------------------- */
.about { padding: clamp(3rem, 7vw, 6rem) var(--gutter); background: var(--bg-2); border-block: 1px solid var(--line-2); }
.about-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 70px -32px rgba(0,0,0,.75); }
.about-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 18%; }
.about-copy .kicker { margin-bottom: 1rem; }
.about-copy .section-title { text-align: left; font-size: clamp(2rem, 5vw, 3.4rem); }
.about-copy p { margin-top: 1.2rem; color: var(--cream-2); max-width: 52ch; }
.about-copy strong { color: var(--cream); font-weight: 600; }

.about-proof { margin-top: 2rem; }
.proof-card {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1rem 1.3rem; border-radius: 14px;
  border: 1px solid var(--line); background: var(--bg-3);
  transition: border-color .35s, transform .35s var(--ease-out), background .35s;
}
.proof-card:hover { border-color: rgba(226,51,32,.6); transform: translateY(-3px); background: var(--bg-card); }
.proof-yt { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(189,15,15,.14); flex-shrink: 0; }
.proof-yt svg { width: 26px; height: 26px; fill: var(--accent-2); }
.proof-text { display: flex; flex-direction: column; }
.proof-text strong { font-weight: 600; color: var(--cream); }
.proof-text em { font-family: var(--sans); font-style: normal; color: var(--cream-3); font-size: .85rem; }
.proof-arrow { color: var(--cream-3); font-size: 1.2rem; transition: transform .35s var(--ease-out); }
.proof-card:hover .proof-arrow { transform: translate(3px,-3px); color: var(--accent-2); }

/* 12. Services ------------------------------------------------ */
.services { padding-bottom: clamp(3rem, 7vw, 6rem); }
.services-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
}
.service-card {
  padding: 1.8rem 1.5rem 2rem; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--bg-card);
  transition: border-color .4s, transform .4s var(--ease-out), background .4s;
  will-change: transform;
}
.service-card:hover { border-color: rgba(226,51,32,.45); transform: translateY(-4px); background: var(--bg-3); }
.service-num { font-family: var(--serif); font-size: 1.3rem; color: var(--accent-2); }
.service-card h3 { font-size: 1.22rem; margin-top: 1.1rem; }
.service-card p { margin-top: .7rem; color: var(--cream-3); font-size: .95rem; }

/* 13. Contact ------------------------------------------------- */
.contact { position: relative; padding: clamp(4rem, 9vw, 7rem) var(--gutter); overflow: hidden; }
.contact-halo {
  position: absolute; inset: -40% -10% auto -10%; height: 90%;
  background: radial-gradient(50% 50% at 50% 0%, rgba(189,15,15,.4), transparent 70%);
  filter: blur(90px); pointer-events: none;
}
.contact-inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.contact-copy .kicker { margin-bottom: 1rem; }
.contact-copy .section-title { text-align: left; font-size: clamp(2rem, 5vw, 3.6rem); }
.contact-copy > p { margin-top: 1.3rem; color: var(--cream-2); max-width: 44ch; }
.contact-direct { list-style: none; margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-direct li { display: flex; flex-direction: column; gap: .15rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-2); }
.contact-direct span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cream-3); }
.contact-direct a { font-size: 1.05rem; color: var(--cream); transition: color .3s; width: fit-content; }
.contact-direct a:hover { color: var(--accent-2); }

.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.4rem); border-radius: 22px;
  border: 1px solid var(--line); background: rgba(24,18,15,.7);
  backdrop-filter: blur(10px);
}
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; color: var(--cream-3); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--cream);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 11px; padding: .8rem .95rem;
  transition: border-color .3s, box-shadow .3s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: #5d5347; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(226,51,32,.16);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%238c7e6c' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .95rem center; padding-right: 2.4rem; }
.btn-submit { grid-column: 1 / -1; width: 100%; position: relative; overflow: hidden; }
.btn-check { width: 0; height: 22px; stroke: #fff; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: width .3s; }
.contact-form.is-sent .btn-label { opacity: .9; }
.contact-form.is-sent .btn-check { width: 22px; }
.form-note { grid-column: 1 / -1; text-align: center; font-size: .82rem; color: var(--cream-3); margin-top: -.2rem; }
.form-note.is-error { color: var(--accent-2); }

/* 14. Footer -------------------------------------------------- */
.footer { border-top: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 4rem) var(--gutter) 2rem; background: var(--bg-2); }
.footer-top { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; justify-content: space-between; }
.footer-brand { display: inline-flex; align-items: center; gap: .8rem; }
.footer-brand img { height: 52px; width: 52px; border-radius: 13px; object-fit: cover; box-shadow: 0 0 0 1px var(--line); }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-brand-text strong { font-family: var(--serif); font-size: 1.2rem; color: var(--cream); }
.footer-brand-text em { font-family: var(--sans); font-style: normal; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--cream-3); }
.footer-nav { display: flex; gap: 1.6rem; }
.footer-nav a, .footer-social a { color: var(--cream-2); font-size: .92rem; transition: color .3s; }
.footer-nav a:hover, .footer-social a:hover { color: var(--accent-2); }
.footer-social { display: flex; gap: 1.4rem; }
.footer-bottom {
  max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between;
  font-size: .82rem; color: var(--cream-3);
}

/* 15. Video modal --------------------------------------------- */
.vmodal { position: fixed; inset: 0; z-index: 9800; display: none; place-items: center; padding: 1.2rem; }
.vmodal.is-open { display: grid; }
.vmodal-backdrop { position: absolute; inset: 0; background: rgba(5,3,2,.86); backdrop-filter: blur(8px); animation: fadeIn .3s var(--ease-out); }
.vmodal-stage { position: relative; z-index: 2; animation: modalPop .45s var(--ease-bounce); }
.vmodal-video { max-height: 86vh; max-width: 92vw; width: auto; border-radius: 16px; background: #000; box-shadow: 0 40px 90px -20px rgba(0,0,0,.9); }
.vmodal-close {
  position: absolute; top: -14px; right: -14px; z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff;
  font-size: 1.1rem; display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.5); transition: transform .3s var(--ease-bounce), background .3s;
}
.vmodal-close:hover { transform: rotate(90deg); background: var(--accent-2); }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes modalPop { from { opacity: 0; transform: scale(.92) translateY(10px); } }

/* 16. Responsive ---------------------------------------------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-figure { max-width: 320px; margin-inline: auto; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 420px; }
  .studio-inner { grid-template-columns: 1fr; }
  .studio-figure { max-width: 360px; }
  .contact-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .niche-grid > * { flex-basis: calc(50% - .7rem); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-brand-text em { display: none; }
  .nav.is-open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 1.4rem;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 1.6rem var(--gutter) 2rem;
    background: rgba(13,10,9,.96); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open .nav-cta { width: 100%; text-align: center; padding-block: .8rem; }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-grid--two { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.4rem 2rem; }
  .contact-form { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .reel-grid, .reel-grid--two { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .niche-grid { gap: .7rem; }
  .niche-grid > * { flex-basis: calc(50% - .35rem); }
  .footer-bottom { flex-direction: column; }
}

/* 17. Reduced motion (only intrusive) ------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-mesh, .marquee-track, .kicker .dot, .hero-scroll span::after { animation: none; }
}
