:root {
  --bg: #080809;
  --panel: #111114;
  --panel-2: #151519;
  --text: #f4f1e9;
  --muted: #aaa79f;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --accent: #caff35;
  --accent-soft: #dcff7c;
  --max: 1280px;
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%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)' opacity='.65'/%3E%3C/svg%3E");
}

.section-shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: min(calc(100% - 48px), var(--max));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 9, .78);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.08em;
  color: var(--accent);
}
.brand-name { font-size: 14px; font-weight: 700; letter-spacing: -.02em; }
.nav { display: flex; gap: 32px; font-size: 13px; color: var(--muted); }
.nav a, .header-cta { transition: color .2s ease; }
.nav a:hover, .header-cta:hover { color: var(--accent); }
.header-cta { justify-self: end; font-size: 13px; border-bottom: 1px solid var(--text); padding-bottom: 5px; }

.hero { position: relative; padding: 88px 0 58px; }
.hero-watermark {
  position: absolute;
  right: -2vw;
  top: 10px;
  z-index: -1;
  font-size: clamp(220px, 38vw, 560px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.14em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  user-select: none;
}
.hero-copy { max-width: 1080px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .about h2, .contact h2 {
  margin: 0;
  line-height: .82;
  letter-spacing: -.08em;
  font-weight: 780;
}
.hero h1 { font-size: clamp(76px, 13.1vw, 184px); }
.hero h1 span { display: block; }
.hero h1 span:last-child { color: var(--muted); }
h2 em { color: var(--muted); font-family: Georgia, serif; font-weight: 400; }
.hero-intro { max-width: 760px; margin: 38px 0 0; font-size: clamp(18px, 2vw, 25px); line-height: 1.5; color: #d6d3cc; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 700; font-size: 13px; transition: .25s ease; }
.button-primary { background: var(--accent); color: #09090a; }
.button-primary:hover { transform: translateY(-2px); background: var(--accent-soft); }
.button-ghost { border: 1px solid var(--line); }
.button-ghost:hover { border-color: var(--line-strong); }

.hero-reel { display: grid; grid-template-columns: 1.48fr .72fr; gap: 16px; margin-top: 76px; }
.reel-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--panel); min-height: 360px; }
.reel-main { min-height: 650px; }
.reel-card video, .reel-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.reel-card:hover video, .reel-card:hover img { transform: scale(1.025); }
.reel-shade, .image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.03) 28%, rgba(0,0,0,.83)); }
.reel-kicker { position: absolute; z-index: 2; left: 28px; top: 26px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.reel-meta { position: absolute; z-index: 2; left: 28px; bottom: 27px; display: flex; flex-direction: column; gap: 6px; }
.reel-meta strong { font-size: clamp(24px, 3vw, 42px); letter-spacing: -.05em; }
.reel-small .reel-meta strong { font-size: 25px; }
.reel-meta small { color: #e0ddd7; font-size: 12px; }
.reel-description { max-width: 560px; color: rgba(244,241,233,.78); font-size: 12px; line-height: 1.55; }
.reel-small .reel-description { max-width: 300px; font-size: 11px; }
.reel-link { margin-top: 5px; width: fit-content; color: #fff; font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 3px; }
.reel-link:hover { color: var(--accent); border-color: var(--accent); }
.play { position: absolute; z-index: 3; top: 24px; right: 24px; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #0a0a0b; font-size: 17px; font-weight: 800; }

.hero-pillars { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-pillars div { min-height: 120px; padding: 25px 24px 23px 0; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; gap: 16px; }
.hero-pillars div:not(:first-child) { padding-left: 24px; }
.hero-pillars div:last-child { border-right: 0; }
.hero-pillars strong { font-size: 18px; letter-spacing: -.03em; }
.hero-pillars span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.marquee { overflow: hidden; border-bottom: 1px solid var(--line); padding: 23px 0; }
.marquee-track { width: max-content; display: flex; animation: marquee 28s linear infinite; will-change: transform; color: #d8d5ce; font-size: 12px; font-weight: 750; letter-spacing: .11em; }
.marquee-group { display: flex; flex-shrink: 0; align-items: center; gap: 28px; padding-right: 28px; }
.marquee-track i { color: var(--accent); font-style: normal; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.work { padding: 72px 0 130px; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 36px; align-items: end; margin-bottom: 68px; }
.section-heading h2, .about h2, .contact h2 { font-size: clamp(57px, 7.5vw, 106px); }
.section-heading > p { color: var(--muted); line-height: 1.7; max-width: 480px; justify-self: end; margin: 0; }
.work-label { display: flex; justify-content: space-between; align-items: center; margin: 0 0 18px; padding: 0 2px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.work-label-secondary { margin-top: 86px; }

.feature-project { display: grid; grid-template-columns: 1.44fr .76fr; gap: 16px; margin-bottom: 18px; }
.feature-project-reverse { grid-template-columns: .76fr 1.44fr; }
.feature-project-reverse .feature-video { order: 2; }
.feature-video { position: relative; min-height: 570px; background: var(--panel); border-radius: var(--radius); overflow: hidden; }
.feature-video > video, .feature-video > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1); }
.feature-video:hover > video, .feature-video:hover > img { transform: scale(1.022); }
.feature-video-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.01) 45%, rgba(0,0,0,.72)); pointer-events: none; }
.feature-watch { position: absolute; left: 24px; bottom: 22px; z-index: 4; display: inline-flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: rgba(9,9,11,.55); backdrop-filter: blur(12px); font-size: 11px; font-weight: 750; }
.feature-copy { min-height: 570px; border-radius: var(--radius); background: var(--panel); padding: 32px; display: flex; flex-direction: column; }
.project-topline { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.role-chip { padding: 8px 11px; border-radius: 999px; background: var(--accent); color: #0a0a0b; font-weight: 800; letter-spacing: .03em; white-space: nowrap; }
.role-chip-alt { background: #27272e; color: #f0ede7; }
.project-series { margin: auto 0 9px; color: var(--accent); text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.feature-copy h3, .project-card h3 { margin: 0; font-size: clamp(37px, 4.1vw, 59px); line-height: .98; letter-spacing: -.058em; }
.feature-copy h3 em, .project-card h3 em { font-family: Georgia, serif; font-weight: 400; color: var(--muted); }
.feature-copy > p:not(.project-series) { color: var(--muted); line-height: 1.67; margin: 22px 0; font-size: 14px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.project-tags span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px; font-size: 10px; color: #d1cec7; }
.text-link { margin-top: 24px; font-size: 13px; font-weight: 700; display: inline-flex; gap: 7px; align-items: center; align-self: flex-start; border-bottom: 1px solid rgba(255,255,255,.42); padding-bottom: 5px; }
.text-link:hover { color: var(--accent); border-color: var(--accent); }
.dual-links { margin-top: auto; display: flex; gap: 18px; flex-wrap: wrap; }
.dual-links .text-link { margin-top: 0; }

.fac-feature-media img { object-position: center; }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.project-card { background: var(--panel); border-radius: var(--radius); overflow: hidden; min-height: 690px; display: flex; flex-direction: column; }
.project-card-wide { grid-column: 1 / -1; min-height: 540px; display: grid; grid-template-columns: 1.25fr .75fr; }
.project-card-wide .project-image, .project-card-wide .project-video-media { height: 100%; min-height: 540px; }
.project-card-wide .project-card-copy { min-height: 540px; }
.project-card-wide .project-series { margin-top: auto; }
.project-image, .project-video-media, .ivors-media {
  position: relative;
  display: block;
  height: 365px;
  overflow: hidden;
  background: #261346;
}
.ivors-brand-art {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.ivors-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,5,15,.01) 58%, rgba(9,5,15,.13));
  pointer-events: none;
}
.ivors-video-float {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  width: clamp(126px, 22%, 166px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 10px;
  background: #160d20;
  box-shadow: 0 14px 34px rgba(8,4,14,.38);
}
.ivors-video-float video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.ivors-media:hover .ivors-brand-art,
.ivors-media:hover .ivors-video-float video { transform: scale(1.02); }
.ivors-video-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,5,15,.01) 42%, rgba(9,5,15,.72)); }
.ivors-video-label { position: absolute; left: 7px; bottom: 7px; z-index: 2; padding: 4px 6px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(12,8,17,.56); backdrop-filter: blur(10px); color: #fff; font-size: 6px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }

.approach { padding: 118px 0 132px; border-top: 1px solid var(--line); }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.approach-grid article { padding: 28px 28px 0 0; border-right: 1px solid var(--line); }
.approach-grid article:not(:first-child) { padding-left: 28px; }
.approach-grid article:last-child { border-right: 0; }
.approach-grid span { color: var(--accent); font-size: 11px; font-weight: 800; }
.approach-grid h3 { margin: 72px 0 14px; font-size: 22px; letter-spacing: -.035em; }
.approach-grid p { margin: 0; color: var(--muted); line-height: 1.68; font-size: 13px; }

.about { padding: 122px 0; border-top: 1px solid var(--line); }
.about-intro { max-width: 1050px; }
.about-body { display: grid; grid-template-columns: 1.1fr .7fr .7fr; gap: 38px; margin-top: 68px; }
.about-body p { color: var(--muted); line-height: 1.78; margin: 0; }
.about-body .about-lead { color: var(--text); font-size: clamp(23px, 2.5vw, 35px); line-height: 1.36; letter-spacing: -.03em; }
.signature { margin-top: 92px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-end; }
.signature > span { font-size: clamp(100px, 18vw, 250px); line-height: .72; font-weight: 900; letter-spacing: -.13em; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.28); }
.signature p { margin: 0; text-align: right; font-size: 18px; font-weight: 700; }
.signature small { color: var(--muted); font-size: 11px; font-weight: 600; }

.feedback-top { padding: 52px 0 24px; }
.feedback-top-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 24px; }
.feedback-top-heading p { margin: 0; }
.feedback-top-heading > p:last-child { max-width: 420px; color: var(--muted); line-height: 1.65; text-align: right; }
.feedback-section { padding: 104px 0 118px; border-top: 1px solid var(--line); }
.feedback-section-mid { margin-top: 88px; }
.feedback-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: end; margin-bottom: 42px; }
.feedback-heading h2 { margin: 0; font-size: clamp(50px, 6.6vw, 92px); line-height: .9; letter-spacing: -.07em; }
.feedback-heading h2 em { color: var(--muted); font-family: Georgia, serif; font-weight: 400; }
.feedback-heading > p { max-width: 390px; justify-self: end; margin: 0; color: var(--muted); line-height: 1.7; }
.feedback-grid { display: grid; gap: 12px; }
.feedback-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feedback-card { min-height: 176px; margin: 0; padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); display: flex; flex-direction: column; justify-content: space-between; }
.feedback-card p { margin: 0; font-family: Georgia, serif; font-size: clamp(21px, 2.35vw, 32px); line-height: 1.16; letter-spacing: -.035em; }
.feedback-card cite { margin-top: 22px; color: var(--muted); font-family: inherit; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.feedback-card:first-child { border-color: rgba(202,255,53,.34); }
.feedback-card:first-child p { color: var(--accent-soft); }

.contact { padding: 126px 0 90px; border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: end; }
.contact-copy p { color: var(--muted); line-height: 1.7; max-width: 500px; }
.contact-email { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; font-size: clamp(21px, 3vw, 38px); letter-spacing: -.04em; border-bottom: 1px solid var(--text); padding-bottom: 7px; }
.contact-email:hover { color: var(--accent); border-color: var(--accent); }
.contact-phone { display: block; width: max-content; margin-top: 18px; color: var(--muted); font-size: 18px; }
.contact-phone:hover { color: var(--text); }
.contact-links { display: flex; gap: 24px; margin-top: 40px; color: var(--muted); font-size: 13px; }
.contact-links a:hover { color: var(--accent); }

.footer { min-height: 112px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; justify-self: start; color: var(--text); }
.footer-brand strong { color: var(--accent); }
.footer > p { justify-self: center; }
.footer > a:last-child { justify-self: end; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero-reel, .feature-project, .feature-project-reverse { grid-template-columns: 1fr; }
  .feature-project-reverse .feature-video { order: 0; }
  .reel-main, .reel-small { min-height: 480px; }
  .hero-pillars, .approach-grid { grid-template-columns: 1fr 1fr; }
  .hero-pillars div:nth-child(2), .approach-grid article:nth-child(2) { border-right: 0; }
  .hero-pillars div:nth-child(3), .hero-pillars div:nth-child(4), .approach-grid article:nth-child(3), .approach-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .hero-pillars div:nth-child(3), .approach-grid article:nth-child(3) { padding-left: 0; }
  .section-heading, .contact-grid { grid-template-columns: 1fr; }
  .section-heading > p { justify-self: start; }
  .about-body { grid-template-columns: 1fr 1fr; }
  .about-body .about-lead { grid-column: 1 / -1; }
  .feedback-heading { grid-template-columns: 1fr; }
  .feedback-heading > p { justify-self: start; }
  .feedback-grid-two { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section-shell, .site-header { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 70px; }
  .brand-name, .header-cta { display: none; }
  .hero { padding-top: 62px; }
  .hero h1 { font-size: clamp(72px, 24vw, 116px); }
  .hero-watermark { top: 140px; right: -10vw; }
  .hero-reel { grid-template-columns: 1fr; margin-top: 54px; }
  .reel-main, .reel-small { min-height: 385px; }
  .hero-pillars, .approach-grid { grid-template-columns: 1fr; }
  .hero-pillars div, .hero-pillars div:not(:first-child), .approach-grid article, .approach-grid article:not(:first-child) { min-height: auto; padding: 24px 0; border-right: 0; border-top: 1px solid var(--line); }
  .hero-pillars div:first-child, .approach-grid article:first-child { border-top: 0; }
  .work { padding: 58px 0 98px; }
  .section-heading { margin-bottom: 46px; }
  .work-label { align-items: flex-start; gap: 18px; }
  .work-label span:last-child { text-align: right; }
  .feature-video, .feature-copy { min-height: 420px; }
  .feature-copy { padding: 25px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card-wide { grid-column: auto; display: flex; }
  .project-card-wide .project-image { min-height: 320px; height: 320px; }
  .project-card-wide .project-card-copy { min-height: auto; }
  .project-card { min-height: 640px; }
  .project-image, .project-video-media, .ivors-media { height: 320px; }
  .project-card-copy { padding: 24px; }
  .role-chip { white-space: normal; text-align: center; }
  .ivors-media { height: 320px; }
  .ivors-video-float { left: 12px; bottom: 12px; width: 128px; }
  .approach { padding: 92px 0 105px; }
  .approach-grid h3 { margin-top: 28px; }
  .about { padding: 94px 0; }
  .about-body { grid-template-columns: 1fr; }
  .about-body .about-lead { grid-column: auto; }
  .signature { align-items: flex-end; }
  .signature > span { font-size: 110px; }
  .signature p { font-size: 14px; }
  .feedback-top { padding: 44px 0 18px; }
  .feedback-top-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .feedback-top-heading > p:last-child { text-align: left; }
  .feedback-section { padding: 86px 0 96px; }
  .feedback-section-mid { margin-top: 68px; }
  .feedback-grid-two { grid-template-columns: 1fr; }
  .feedback-card { min-height: 144px; }
  .contact { padding-top: 94px; }
  .contact-email { font-size: 19px; }
  .footer { grid-template-columns: 1fr auto; }
  .footer > p { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  video { display: none; }
}
