:root {
  --ink: #0b0b0d;
  --paper: #f2f0e9;
  --yellow: #f5df2b;
  --blue: #3558ff;
  --coral: #ff5c39;
  --line: rgba(11, 11, 13, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; background: white; padding: .8rem 1rem; font-weight: 800; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem clamp(1rem, 3vw, 3.25rem);
  color: white;
  background: rgba(11,11,13,.88);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}
.wordmark, .footer-mark { font: 900 1.2rem/1 Arial, sans-serif; letter-spacing: -.06em; }
.wordmark span, .footer-mark span { color: var(--yellow); }
nav { display: flex; align-items: center; gap: clamp(.85rem, 2vw, 2rem); }
nav a { font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
nav a:not(.nav-cta):hover, nav a:not(.nav-cta):focus-visible { color: var(--yellow); }
.nav-cta { background: var(--yellow); color: var(--ink); padding: .65rem 1rem; }

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 4.1rem;
  display: grid;
  grid-template-columns: 54% 46%;
  background: var(--ink);
  color: white;
}
.hero-copy { padding: clamp(4rem, 9vw, 8.5rem) 3vw 7rem; position: relative; z-index: 2; }
.hero-copy::before {
  content: "";
  position: absolute;
  width: 10rem;
  height: 10rem;
  right: 5%;
  top: 16%;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(1px);
  opacity: .45;
  z-index: -1;
}
.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 2rem; font-size: .77rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow i { width: .35rem; height: .35rem; background: var(--yellow); border-radius: 50%; }
h1, h2 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-weight: 900; letter-spacing: -.055em; line-height: .82; text-transform: uppercase; }
h1 { font-size: clamp(4.5rem, 10.5vw, 10rem); }
h1 em { color: var(--yellow); font-style: normal; -webkit-text-stroke: 1px var(--yellow); text-shadow: .06em .06em 0 var(--blue); }
.hero-intro { max-width: 42rem; margin: 2.2rem 0 0; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; min-height: 3.35rem; padding: .75rem 1.25rem; border: 2px solid currentColor; font-size: .82rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.button-ghost { color: white; }
.button-ghost:hover, .button-ghost:focus-visible { background: white; color: var(--ink); }
.hero-visual { margin: 0; position: relative; min-height: 38rem; overflow: hidden; background: #1b1b1f; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,13,.35), transparent 35%), linear-gradient(0deg, rgba(11,11,13,.7), transparent 45%); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.08); }
.hero-visual figcaption { position: absolute; z-index: 2; right: 1.2rem; bottom: 4.8rem; margin: 0; writing-mode: vertical-rl; text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 800; }
.ticker { position: absolute; left: 0; bottom: 0; width: 100%; z-index: 4; overflow: hidden; background: var(--yellow); color: var(--ink); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.ticker-track { display: flex; gap: 1.25rem; align-items: center; width: max-content; padding: .8rem 0; animation: ticker 22s linear infinite; }
.ticker span { font: 900 1rem/1 Arial, sans-serif; letter-spacing: .08em; }
.ticker b { color: var(--coral); font-size: .7rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 5vw, 5.5rem); }
.section-label { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; border-top: 2px solid var(--ink); padding-top: .8rem; }
.section-label.light { border-color: rgba(255,255,255,.45); }
.manifesto { position: relative; }
.manifesto > blockquote { margin: 0; max-width: 14ch; font: 900 clamp(3rem, 7.8vw, 8rem)/.95 Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; letter-spacing: -.035em; text-transform: uppercase; }
.manifesto > blockquote span { color: var(--blue); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin: clamp(3rem, 7vw, 7rem) 0; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.story-lead { margin: 0; max-width: 24ch; font-size: clamp(1.5rem, 2.7vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
.story-body { max-width: 42rem; font-size: 1.08rem; }
.story-body p:first-child { margin-top: 0; }
.fact-row { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.fact-row div { padding: 1.35rem 1rem; border-right: 1px solid var(--line); }
.fact-row div:last-child { border-right: 0; }
.fact-row strong, .fact-row span { display: block; }
.fact-row strong { font: 900 clamp(1.2rem, 2vw, 2rem)/1 Arial, sans-serif; }
.fact-row span { margin-top: .4rem; color: #5b5b61; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }

.services { background: var(--blue); color: white; }
.services-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: end; margin-bottom: 4rem; }
.services-heading h2, .watch-copy h2, .moments-heading h2, .booking h2 { font-size: clamp(3.8rem, 8.4vw, 8.5rem); }
.services-heading h2 span { color: var(--yellow); }
.services-heading p { max-width: 28rem; color: rgba(255,255,255,.8); font-size: 1.15rem; }
.service-list { border-top: 1px solid rgba(255,255,255,.4); }
.service-card { display: grid; grid-template-columns: 4rem 1fr auto; gap: 2rem; align-items: start; padding: 2.2rem 0; border-bottom: 1px solid rgba(255,255,255,.4); }
.service-number { font: 900 1rem/1 Arial, sans-serif; color: var(--yellow); }
.service-card h3 { margin: 0 0 .65rem; font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -.03em; }
.service-card p { margin: 0; max-width: 62rem; color: rgba(255,255,255,.76); }
.service-mark { font-size: 2rem; color: var(--yellow); }
.production-note { display: grid; grid-template-columns: 12rem 1fr; gap: 2rem; margin-top: 3rem; padding: 1.4rem; background: var(--yellow); color: var(--ink); }
.production-note span { font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.production-note p { margin: 0; }

.watch { background: var(--ink); color: white; }
.watch-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #222; box-shadow: 1rem 1rem 0 var(--coral); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.watch-kicker { color: var(--yellow); font-size: .75rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.watch-copy h2 span { color: var(--coral); }
.watch-copy blockquote { margin: 2rem 0 .4rem; color: rgba(255,255,255,.82); font: italic 1.15rem/1.5 Georgia, serif; }
.watch-copy cite { color: rgba(255,255,255,.55); font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.text-link { display: block; width: fit-content; margin-top: 2rem; padding-bottom: .35rem; border-bottom: 2px solid var(--yellow); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }

.moments-heading { display: flex; justify-content: space-between; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.moments-heading h2 span { color: var(--blue); }
.moments-heading p { max-width: 27rem; margin: 0; font-size: 1.1rem; }
.photo-grid { display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: repeat(2, minmax(15rem, 27rem)); gap: 1rem; }
.photo-card { position: relative; display: block; margin: 0; overflow: hidden; background: #222; }
.photo-card.photo-tall { grid-row: span 2; }
.photo-card-inner { height: 100%; margin: 0; }
.photo-card img { height: 100%; object-fit: cover; transition: transform .6s ease, filter .6s ease; }
.photo-mjimpression img { object-position: 50% 35%; }
.photo-humanimation img { object-position: 50% 42%; }
.photo-cypher img { object-position: 50% 48%; }
.photo-card:hover img, .photo-card:focus-visible img { transform: scale(1.035); filter: saturate(1.18); }
.photo-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.82)); pointer-events: none; }
.photo-card figcaption { position: absolute; z-index: 2; left: 1.2rem; bottom: 1rem; color: white; }
.photo-card figcaption span { display: block; font: 900 1.25rem/1 Arial, sans-serif; }
.photo-card figcaption small { display: block; margin-top: .35rem; text-transform: uppercase; letter-spacing: .12em; }
.roots-feature { display: grid; grid-template-columns: 9rem 1fr; gap: 1.4rem; align-items: center; max-width: 58rem; margin: 2.5rem 0 0 auto; padding: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.4); transition: transform .2s, background .2s; }
.roots-feature:hover, .roots-feature:focus-visible { transform: translateY(-3px); background: white; }
.roots-feature img { aspect-ratio: 1; object-fit: cover; }
.roots-note { margin: 0; padding-left: 1.2rem; border-left: .45rem solid var(--yellow); font-size: 1.05rem; }
.roots-link { display: inline-block; margin: .8rem 0 0 1.65rem; border-bottom: 2px solid var(--blue); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.booking { background: var(--yellow); text-align: center; }
.booking-overline { margin: 0 0 2rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; font-size: .75rem; }
.booking h2 span { color: var(--blue); text-shadow: .035em .035em 0 var(--ink); }
.booking-copy { max-width: 44rem; margin: 2.4rem auto; font-size: 1.12rem; }
.button-dark { background: var(--ink); color: white; border-color: var(--ink); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(4rem, 8vw, 7rem); border-block: 2px solid var(--ink); text-align: left; }
.contact-grid > * { padding: 1.25rem; border-right: 1px solid rgba(11,11,13,.3); }
.contact-grid > *:last-child { border-right: 0; }
.contact-grid small, .contact-grid strong { display: block; }
.contact-grid small { margin-bottom: .35rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.contact-grid strong { font-size: clamp(1rem, 1.7vw, 1.3rem); overflow-wrap: anywhere; }
.contact-grid a:hover strong, .contact-grid a:focus-visible strong { color: var(--blue); }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 2rem clamp(1rem, 3vw, 3.25rem); background: var(--ink); color: white; }
.footer-mark { font-size: 1.6rem; }
.socials { display: flex; gap: .6rem; }
.socials a { display: grid; place-items: center; width: 2.65rem; height: 2.65rem; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: .72rem; font-weight: 900; transition: background .2s, color .2s, border-color .2s; }
.socials a:hover, .socials a:focus-visible { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
footer p { margin: 0; text-align: right; color: rgba(255,255,255,.55); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 5.5rem; }
  .hero-visual { min-height: 65svh; }
  .story-grid, .services-heading, .watch-grid { grid-template-columns: 1fr; }
  .services-heading p { margin-bottom: 0; }
  .watch-copy { padding-top: 2rem; }
  .production-note { grid-template-columns: 1fr; gap: .4rem; }
  .fact-row { grid-template-columns: repeat(2, 1fr); }
  .fact-row div:nth-child(2) { border-right: 0; }
  .fact-row div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .site-header { padding: .75rem 1rem; }
  nav a:not(.nav-cta) { display: none; }
  .hero-copy { padding: 4.5rem 1rem 5.5rem; }
  h1 { font-size: clamp(4.1rem, 24vw, 7rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 28rem; }
  .section { padding-inline: 1rem; }
  .story-grid { gap: 2rem; }
  .service-card { grid-template-columns: 2rem 1fr; gap: 1rem; }
  .service-mark { display: none; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 23rem); }
  .photo-card.photo-tall { grid-row: auto; }
  .moments-heading { display: block; }
  .moments-heading p { margin-top: 1.5rem; }
  .roots-feature { grid-template-columns: 6.5rem 1fr; gap: .8rem; padding: .75rem; }
  .roots-note { padding-left: .8rem; font-size: .95rem; }
  .roots-link { margin-left: 1.25rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > * { border-right: 0; border-bottom: 1px solid rgba(11,11,13,.3); }
  .contact-grid > *:last-child { border-bottom: 0; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .socials { justify-content: center; }
  footer p { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
