:root {
  --ink: #f7f3ea;
  --muted: rgba(247, 243, 234, 0.64);
  --soft: rgba(247, 243, 234, 0.42);
  --black: #050505;
  --black-2: #0b0b0b;
  --panel: rgba(255, 255, 255, 0.045);
  --line: rgba(247, 243, 234, 0.15);
  --line-strong: rgba(247, 243, 234, 0.28);
  --champagne: #d9c7a3;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --display:
    "Proxima Nova", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial,
    ui-sans-serif, system-ui, sans-serif;
  font-family:
    "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(247, 243, 234, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(247, 243, 234, 0.028) 1px, transparent 1px) 0 0 / 96px 96px,
    radial-gradient(circle at 50% 0, rgba(217, 199, 163, 0.14), transparent 36rem),
    var(--black);
  overflow-x: hidden;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
}

#field {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4.2vw, 62px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(247, 243, 234, 0.1);
  backdrop-filter: blur(24px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: 0.08em;
}

.brand-name,
.site-nav,
.kicker,
.eyebrow,
.reel-label,
.work-card p {
  font-size: 0.68rem;
  line-height: 1.25;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-name {
  color: var(--soft);
}

.site-nav {
  display: flex;
  gap: 6px;
  color: rgba(247, 243, 234, 0.72);
  font-weight: 400;
}

.site-nav a {
  padding: 9px 12px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--ink);
  border-color: var(--champagne);
}

.hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 370px);
  gap: clamp(34px, 7vw, 104px);
  align-items: end;
  padding: 132px clamp(22px, 5vw, 76px) 68px;
}

.hero-copy {
  max-width: 980px;
}

.kicker,
.eyebrow,
.reel-label,
.work-card p {
  margin: 0;
  color: var(--soft);
  font-weight: 400;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(5.6rem, 23vw, 18rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  font-weight: 100;
}

.hero-name {
  margin: 24px 0 0;
  font-size: clamp(1.2rem, 2.4vw, 2.55rem);
  line-height: 1.1;
  font-weight: 300;
  color: rgba(247, 243, 234, 0.9);
}

.hero-text {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.62;
  color: var(--muted);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button.primary {
  color: #070707;
  background: var(--ink);
  border-color: var(--ink);
}

.button.secondary {
  background: transparent;
}

.button:hover {
  border-color: var(--champagne);
  background: rgba(217, 199, 163, 0.12);
  color: var(--ink);
}

.reel-panel {
  align-self: center;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.reel-panel h2 {
  margin: 14px 0 18px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 0.98;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid var(--line);
  border-radius: 3px;
}

.video-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  background: #050505;
}

.video-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-trigger img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 180ms ease, transform 220ms ease;
}

.video-trigger span {
  position: relative;
  padding: 13px 18px;
  border: 1px solid rgba(247, 243, 234, 0.42);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-trigger:hover img {
  opacity: 0.9;
  transform: scale(1.02);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-player {
  width: min(1180px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  background: #050505;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.72);
}

.lightbox.is-reel-video .lightbox-player {
  width: min(520px, 82vw);
  max-height: 86vh;
  aspect-ratio: 9 / 16;
}

.lightbox-player iframe,
.lightbox-player video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.lightbox-player video {
  object-fit: contain;
}

.lightbox-player iframe:not([src]),
.lightbox-player video:not([src]) {
  display: none;
}

.lightbox-close {
  position: fixed;
  top: clamp(16px, 3vw, 34px);
  right: clamp(16px, 3vw, 34px);
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(5, 5, 5, 0.72);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.lightbox-close:hover {
  border-color: var(--champagne);
}

.image-lightbox-player {
  display: grid;
  gap: 16px;
  width: min(1240px, 100%);
  max-height: calc(100svh - 112px);
  margin: 0;
}

.image-lightbox-player img {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 170px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  background: #080808;
  border: 1px solid var(--line-strong);
}

.image-lightbox-player figcaption {
  color: rgba(244, 244, 241, 0.72);
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.4;
}

.section {
  padding: clamp(72px, 10vw, 138px) clamp(22px, 5vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 920px;
}

h2 {
  max-width: 1020px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6.2vw, 6.2rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  font-weight: 100;
}

h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  line-height: 1.12;
  font-weight: 200;
}

.practice {
  background: rgba(5, 5, 5, 0.74);
  border-top: 1px solid var(--line);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.practice-grid article {
  min-height: 340px;
  padding: clamp(22px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.035);
}

.index {
  display: block;
  margin-bottom: 82px;
  color: rgba(217, 199, 163, 0.68);
  font-family: var(--display);
  font-weight: 200;
}

.practice-grid p,
.contact-card p,
.work-card h3 {
  color: var(--muted);
  line-height: 1.58;
}

.ia-reference {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  margin-top: clamp(28px, 5vw, 62px);
  padding-top: clamp(28px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.reference-copy {
  max-width: 460px;
}

.reference-copy h3 {
  margin: 22px 0 18px;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

.reference-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.62;
}

.reference-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reference-gallery.single {
  grid-template-columns: minmax(0, 1fr);
}

.reference-visual {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.reference-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.reference-visual.poster img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: #f7f3ea;
}

.reference-visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 16px;
  color: rgba(247, 243, 234, 0.68);
  font-size: 0.78rem;
  line-height: 1.35;
}

.reference-visual figcaption span {
  color: var(--champagne);
  font-family: var(--display);
}

.work {
  background:
    linear-gradient(180deg, rgba(217, 199, 163, 0.06), transparent 22rem),
    var(--black-2);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.work .eyebrow,
.work-card p {
  color: rgba(217, 199, 163, 0.58);
}

.work-board {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 42px;
}

.work-card {
  display: grid;
  gap: 20px;
  min-height: 372px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.work-card.large {
  grid-row: span 2;
}

.card-media {
  min-height: 226px;
  border-radius: 3px;
  background:
    linear-gradient(115deg, rgba(247, 243, 234, 0.18), transparent 42%),
    repeating-linear-gradient(90deg, rgba(247, 243, 234, 0.08) 0 1px, transparent 1px 17px),
    linear-gradient(135deg, rgba(217, 199, 163, 0.68), rgba(255, 255, 255, 0.04)),
    #111;
  background-blend-mode: screen, normal, normal, normal;
  position: relative;
  overflow: hidden;
}

.card-media::before,
.card-media::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(247, 243, 234, 0.34);
}

.card-media::before {
  inset: 12%;
}

.card-media::after {
  inset: 28% 20%;
  transform: rotate(-8deg);
}

.video-media {
  aspect-ratio: 1 / 1;
  min-height: 0;
  background: #050505;
}

.video-media::before,
.video-media::after {
  content: none;
}

.video-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-media {
  background: #050505;
}

.image-media::before,
.image-media::after {
  content: none;
}

.image-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 226px;
  object-fit: cover;
}

.media-b {
  background:
    linear-gradient(45deg, rgba(217, 199, 163, 0.36), transparent 54%),
    repeating-conic-gradient(from 0.18turn, rgba(247, 243, 234, 0.12) 0 8deg, transparent 8deg 18deg),
    #0f0f0f;
}

.media-c {
  background:
    radial-gradient(circle at 52% 48%, rgba(247, 243, 234, 0.24), transparent 19%),
    radial-gradient(circle at 42% 52%, rgba(217, 199, 163, 0.26), transparent 27%),
    linear-gradient(125deg, #101010, #1a1712 52%, #d9c7a3);
}

.work-card h3 {
  margin-bottom: 0;
  color: rgba(247, 243, 234, 0.78);
}

.process {
  background: var(--black);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid var(--line-strong);
}

.process-line span {
  min-height: 118px;
  padding: 20px 14px;
  border-right: 1px solid var(--line);
  color: rgba(247, 243, 234, 0.78);
  font-weight: 300;
}

.process-line span:last-child {
  border-right: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(26px, 5vw, 74px);
  align-items: end;
  background:
    linear-gradient(135deg, rgba(217, 199, 163, 0.13), transparent 34rem),
    #080808;
  border-top: 1px solid var(--line);
}

.contact-card {
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.mail-link {
  display: block;
  margin-top: 30px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.65rem);
  line-height: 1;
  font-weight: 100;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.phone-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  letter-spacing: 0.08em;
}

.phone-link:hover {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(22px, 5vw, 76px);
  border-top: 1px solid var(--line);
  background: #020202;
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    align-items: flex-start;
    gap: 14px;
  }

  .brand {
    flex-direction: column;
    gap: 3px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .section-heading,
  .work-board,
  .ia-reference,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .reel-panel {
    align-self: stretch;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .practice-grid article {
    min-height: 268px;
  }

  .index {
    margin-bottom: 48px;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .reference-gallery {
    grid-template-columns: 1fr;
  }

  .process-line span {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer {
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    padding: 8px 8px;
  }

  h1 {
    font-size: clamp(5rem, 32vw, 8rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Editorial orange/black art direction inspired by the supplied reference. */
:root {
  --ink: #111111;
  --muted: rgba(17, 17, 17, 0.62);
  --soft: rgba(17, 17, 17, 0.42);
  --black: #050505;
  --black-2: #0a0a0a;
  --paper: #f5f2ec;
  --paper-2: #ebe7df;
  --orange: #e11919;
  --orange-deep: #a30f0f;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.28);
  --champagne: #e11919;
  --shadow: 0 28px 70px rgba(17, 17, 17, 0.12);
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px) 0 0 / 96px 96px,
    var(--paper);
}

#field {
  opacity: 0.28;
  mix-blend-mode: multiply;
}

.site-header {
  margin: 18px clamp(16px, 3vw, 42px) 0;
  width: auto;
  right: clamp(16px, 3vw, 42px);
  left: clamp(16px, 3vw, 42px);
  padding: 14px 16px;
  color: #fff;
  background: rgba(17, 17, 17, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
}

.brand-name,
.site-nav {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.hero {
  min-height: 96svh;
  margin: 18px clamp(16px, 3vw, 42px) 0;
  padding: 112px clamp(20px, 5vw, 70px) 34px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.22), transparent 16rem),
    linear-gradient(145deg, var(--orange), var(--orange-deep));
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "FEW STUDIO";
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  bottom: -0.16em;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(4.8rem, 14vw, 15rem);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: 0;
  pointer-events: none;
}

.hero-copy,
.reel-panel {
  position: relative;
  z-index: 1;
}

.kicker,
.hero-text,
.hero-name {
  color: rgba(255, 255, 255, 0.88);
}

.kicker,
.reel-label {
  color: rgba(255, 255, 255, 0.72);
}

h1 {
  max-width: 9ch;
  font-size: clamp(5.8rem, 22vw, 17rem);
  font-weight: 900;
  line-height: 0.74;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2,
h3,
.reference-copy h3,
.reel-panel h2 {
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  border-color: currentColor;
  border-radius: 0;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: #111;
  border-color: #111;
}

.button.secondary {
  color: #fff;
}

.button:hover {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.reel-panel {
  color: #111;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  border-radius: 0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.reel-panel .reel-label {
  color: var(--soft);
}

.video-frame,
.reference-visual,
.work-card,
.contact-card,
.lightbox-player {
  border-radius: 0;
}

.video-trigger span {
  color: #111;
  background: #fff;
  border-color: #111;
  border-radius: 0;
  font-weight: 900;
}

.section {
  padding: clamp(70px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.practice {
  color: #111;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.055) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px) 0 0 / 96px 96px,
    #f8f6f1;
  border-top: 0;
}

.practice .eyebrow,
.practice-grid p,
.reference-copy p:not(.eyebrow),
.reference-visual figcaption {
  color: rgba(17, 17, 17, 0.62);
}

.practice-grid {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(17, 17, 17, 0.12);
}

.practice-grid article,
.reference-visual {
  background: #fff;
}

.index,
.reference-visual figcaption span {
  color: var(--orange);
  font-weight: 900;
}

.ia-reference {
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.reference-copy h3 {
  color: #111;
}

.reference-visual {
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 22px 55px rgba(17, 17, 17, 0.08);
}

.reference-visual figcaption {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  background: #fff;
  font-weight: 700;
}

.reference-visual.poster img {
  background: #fff;
}

.work {
  color: #fff;
  background: #050505;
  border: 0;
  margin: 0 clamp(16px, 3vw, 42px);
  border-radius: 0;
}

.work .eyebrow,
.work-card p {
  color: rgba(255, 255, 255, 0.58);
}

.work-card {
  background: #111;
  border-color: rgba(255, 255, 255, 0.12);
}

.work-card h3 {
  color: #fff;
}

.process {
  color: #111;
  background: #f8f6f1;
}

.process .eyebrow {
  color: rgba(17, 17, 17, 0.42);
}

.process-line {
  border-top-color: #111;
}

.process-line span {
  color: #111;
  border-right-color: rgba(17, 17, 17, 0.14);
  font-weight: 700;
}

.contact {
  margin: 0 clamp(16px, 3vw, 42px) clamp(16px, 3vw, 42px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.14), transparent 45%),
    var(--orange);
  border: 0;
}

.contact .eyebrow,
.contact-card p,
.phone-link {
  color: rgba(255, 255, 255, 0.74);
}

.contact-card {
  background: #050505;
  border: 0;
}

.mail-link,
.phone-link:hover {
  color: #fff;
}

.mail-link:hover {
  color: var(--orange);
}

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #050505;
  border-top: 0;
}

@media (max-width: 860px) {
  .site-header {
    margin: 0;
    left: 0;
    right: 0;
  }

  .hero,
  .work,
  .contact {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Dark Markfolio-inspired direction with FEW portrait. */
:root {
  --ink: #f4f4f1;
  --muted: rgba(244, 244, 241, 0.62);
  --soft: rgba(244, 244, 241, 0.38);
  --black: #000000;
  --black-2: #101010;
  --paper: #0b0b0b;
  --paper-2: #151515;
  --orange: #e11919;
  --orange-deep: #a30f0f;
  --line: rgba(244, 244, 241, 0.12);
  --line-strong: rgba(244, 244, 241, 0.24);
  --champagne: #e11919;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(244, 244, 241, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(244, 244, 241, 0.028) 1px, transparent 1px) 0 0 / 96px 96px,
    #040404;
}

#field {
  opacity: 0.18;
  mix-blend-mode: screen;
}

.site-header {
  color: #fff;
  background: rgba(0, 0, 0, 0.76);
  border-color: rgba(244, 244, 241, 0.12);
  backdrop-filter: blur(22px);
}

.brand-mark {
  color: #fff;
}

.brand-name,
.site-nav {
  color: rgba(244, 244, 241, 0.7);
}

.hero {
  color: #fff;
  background:
    radial-gradient(circle at 72% 34%, rgba(67, 58, 111, 0.36), transparent 18rem),
    radial-gradient(circle at 18% 12%, rgba(225, 25, 25, 0.18), transparent 18rem),
    #050505;
  border: 1px solid rgba(244, 244, 241, 0.1);
  padding-top: clamp(124px, 15vw, 190px);
  padding-bottom: clamp(58px, 8vw, 110px);
}

.hero::before {
  content: "";
  inset: auto clamp(16px, 3vw, 42px) 30px auto;
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border: 1px solid rgba(244, 244, 241, 0.09);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 42%, rgba(75, 70, 116, 0.72), rgba(0, 0, 0, 0) 62%),
    radial-gradient(circle at 62% 60%, rgba(225, 25, 25, 0.18), transparent 44%);
  filter: blur(0.3px);
}

.kicker,
.reel-label,
.eyebrow {
  color: var(--orange);
}

.hero-text,
.hero-name {
  color: rgba(244, 244, 241, 0.78);
}

h1 {
  font-size: clamp(5.4rem, 18vw, 14rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
  text-transform: none;
  font-weight: 200;
  animation: heroTitleFade 1000ms ease-out 140ms both;
}

@keyframes heroTitleFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-name {
  max-width: 760px;
  font-size: clamp(1.35rem, 2.6vw, 2.8rem);
  line-height: 1.04;
  color: #fff;
  font-weight: 200;
}

h2,
h3,
.reference-copy h3,
.reel-panel h2 {
  font-weight: 200;
  text-transform: none;
}

.section {
  padding-top: clamp(94px, 12vw, 170px);
  padding-bottom: clamp(94px, 12vw, 170px);
}

.section-heading {
  margin-bottom: clamp(58px, 8vw, 108px);
}

.practice-grid article {
  min-height: 380px;
  padding: clamp(30px, 4vw, 54px);
}

.index {
  margin-bottom: 118px;
  font-weight: 300;
}

.ia-reference {
  gap: clamp(34px, 6vw, 86px);
  margin-top: clamp(72px, 10vw, 138px);
  padding-top: clamp(58px, 8vw, 108px);
  align-items: start;
}

.reference-copy {
  padding-top: 8px;
}

.reference-copy h3 {
  margin: 26px 0 24px;
}

.reference-gallery {
  gap: clamp(22px, 3vw, 34px);
}

.reference-visual figcaption {
  padding: 18px 20px 20px;
  font-weight: 400;
}

.work-board {
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(58px, 8vw, 104px);
}

.work-card {
  min-height: 420px;
  padding: clamp(22px, 3vw, 36px);
}

.process-line {
  margin-top: clamp(58px, 8vw, 104px);
}

.process-line span {
  min-height: 150px;
  padding: 28px 18px;
  font-weight: 300;
}

.contact {
  padding-top: clamp(94px, 12vw, 170px);
  padding-bottom: clamp(94px, 12vw, 170px);
}

.contact-card {
  padding: clamp(34px, 5vw, 58px);
}

.hero-portrait {
  display: block;
  max-width: 390px;
  margin: 34px 0 0;
}

.hero-portrait img {
  width: 88px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(244, 244, 241, 0.22);
  filter: grayscale(1) contrast(1.08);
}

.button.primary {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(244, 244, 241, 0.18);
}

.button:hover {
  color: #fff;
  background: rgba(225, 25, 25, 0.72);
  border-color: rgba(225, 25, 25, 0.72);
}

.reel-panel {
  color: #fff;
  background: #121212;
  border: 1px solid rgba(244, 244, 241, 0.1);
}

.reel-panel .reel-label {
  color: var(--orange);
}

.video-frame,
.reference-visual,
.work-card,
.contact-card {
  background: #101010;
  border: 1px solid rgba(244, 244, 241, 0.1);
}

.video-trigger span {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.practice,
.process {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(244, 244, 241, 0.028) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(244, 244, 241, 0.022) 1px, transparent 1px) 0 0 / 96px 96px,
    #080808;
}

.practice .eyebrow,
.practice-grid p,
.reference-copy p:not(.eyebrow),
.reference-visual figcaption,
.process .eyebrow {
  color: rgba(244, 244, 241, 0.58);
  margin-bottom: 28px;
}

.practice-grid {
  background: rgba(244, 244, 241, 0.1);
  border-color: rgba(244, 244, 241, 0.1);
}

.practice-grid article,
.reference-visual {
  background: #101010;
}

.index,
.reference-visual figcaption span,
.reference-copy h3 {
  color: #fff;
}

.ia-reference {
  border-top-color: rgba(244, 244, 241, 0.12);
}

.motion-reference {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  margin-top: clamp(72px, 10vw, 138px);
  padding-top: clamp(58px, 8vw, 108px);
  border-top: 1px solid rgba(244, 244, 241, 0.12);
}

.motion-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.motion-video-trigger {
  display: grid;
  gap: 14px;
  padding: 0;
  color: #fff;
  text-align: left;
  background: #101010;
  border: 1px solid rgba(244, 244, 241, 0.1);
  cursor: pointer;
}

.motion-video-trigger img,
.motion-video-trigger > video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.motion-video-trigger > video {
  pointer-events: none;
}

.motion-video-trigger > video::-webkit-media-controls,
.motion-video-trigger > video::-webkit-media-controls-panel,
.motion-video-trigger > video::-webkit-media-controls-play-button,
.motion-video-trigger > video::-webkit-media-controls-start-playback-button {
  display: none;
  -webkit-appearance: none;
}

.reels-gallery {
  align-items: start;
}

.reels-gallery .motion-video-trigger img,
.reels-gallery .motion-video-trigger > video {
  aspect-ratio: 9 / 16;
  height: auto;
}

.motion-video-trigger span {
  padding: 0 16px 18px;
  color: rgba(244, 244, 241, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
}

.motion-video-trigger:hover {
  border-color: rgba(225, 25, 25, 0.58);
}

.motion-video-trigger[data-video-id=""]:not([data-video-src]) {
  cursor: default;
}

.examples-heading {
  max-width: 980px;
  margin-top: clamp(84px, 12vw, 160px);
  padding-top: clamp(62px, 9vw, 124px);
  border-top: 1px solid rgba(244, 244, 241, 0.12);
}

.examples-section .examples-heading {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.examples-heading h2 {
  margin: 24px 0 24px;
  max-width: 860px;
}

.examples-heading p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(244, 244, 241, 0.58);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.62;
}

.philosophy-note {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(244, 244, 241, 0.58);
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.reference-visual {
  box-shadow: none;
  cursor: zoom-in;
}

.reference-visual figcaption {
  background: #101010;
  border-top-color: rgba(244, 244, 241, 0.1);
}

.reference-visual.poster img {
  background: transparent;
}

.reference-visual.poster {
  background: transparent;
}

.work {
  background: #050505;
  border: 1px solid rgba(244, 244, 241, 0.1);
}

.work-card {
  background: #111;
  border-color: rgba(244, 244, 241, 0.1);
}

.project-stats {
  margin-top: 24px;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.42;
  color: rgba(244, 244, 241, 0.72);
}

.project-film-title {
  margin-top: 24px;
}

.process-line {
  border-top-color: rgba(244, 244, 241, 0.22);
}

.process-line span {
  color: rgba(244, 244, 241, 0.82);
  border-right-color: rgba(244, 244, 241, 0.1);
}

.contact {
  color: #fff;
  background:
    radial-gradient(circle at 72% 24%, rgba(225, 25, 25, 0.22), transparent 22rem),
    #050505;
  border: 1px solid rgba(244, 244, 241, 0.1);
}

.contact .eyebrow,
.contact-card p,
.phone-link {
  color: rgba(244, 244, 241, 0.62);
}

.contact .eyebrow {
  margin-bottom: 26px;
}

.eyebrow,
.practice .eyebrow,
.work .eyebrow,
.process .eyebrow,
.contact .eyebrow,
.credentials .eyebrow {
  color: var(--orange);
}

.contact-card,
.site-footer {
  background: #101010;
}

.credentials {
  color: #fff;
  background: #050505;
  border-top: 1px solid rgba(244, 244, 241, 0.1);
}

.credentials h2 {
  margin: 22px 0 clamp(42px, 6vw, 82px);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.credentials-block {
  padding: clamp(24px, 4vw, 46px);
  background: #101010;
  border: 1px solid rgba(244, 244, 241, 0.1);
}

.credentials-block h3 {
  margin-bottom: 28px;
  color: #fff;
}

.credentials-block ul {
  columns: 2;
  column-gap: clamp(18px, 3vw, 38px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.credentials-block li {
  break-inside: avoid;
  margin: 0 0 12px;
  color: rgba(244, 244, 241, 0.64);
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  line-height: 1.35;
}

@media (max-width: 860px) {
  .hero-portrait {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .hero-portrait img {
    width: 74px;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .credentials-block ul {
    columns: 1;
  }

  .motion-reference {
    grid-template-columns: 1fr;
  }

  .motion-gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  h1 {
    animation: none;
  }
}

/* Light trial direction: white background and dark grey typography. */
:root {
  --ink: #2a2a2a;
  --muted: rgba(42, 42, 42, 0.64);
  --soft: rgba(42, 42, 42, 0.42);
  --black: #ffffff;
  --black-2: #f6f6f3;
  --paper: #ffffff;
  --paper-2: #f4f3ef;
  --line: rgba(42, 42, 42, 0.12);
  --line-strong: rgba(42, 42, 42, 0.22);
  --shadow: 0 28px 80px rgba(42, 42, 42, 0.08);
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(42, 42, 42, 0.035) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(42, 42, 42, 0.028) 1px, transparent 1px) 0 0 / 96px 96px,
    #ffffff;
}

#field {
  opacity: 0.08;
  mix-blend-mode: multiply;
}

.site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(42, 42, 42, 0.1);
}

.brand-mark,
.brand-name,
.site-nav,
.site-nav a:hover {
  color: var(--ink);
}

.hero,
.practice,
.process,
.work,
.contact,
.credentials {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(42, 42, 42, 0.032) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(rgba(42, 42, 42, 0.024) 1px, transparent 1px) 0 0 / 96px 96px,
    #ffffff;
  border-color: rgba(42, 42, 42, 0.1);
}

.hero::before {
  opacity: 0.2;
}

.kicker,
.reel-label,
.eyebrow,
.practice .eyebrow,
.work .eyebrow,
.process .eyebrow,
.contact .eyebrow,
.credentials .eyebrow {
  color: var(--orange);
}

.hero-name,
.hero-text,
.practice-grid p,
.reference-copy p:not(.eyebrow),
.reference-visual figcaption,
.motion-video-trigger span,
.examples-heading p:not(.eyebrow),
.philosophy-note,
.project-stats,
.process-line span,
.contact-card p,
.phone-link,
.credentials-block li {
  color: var(--muted);
}

.reference-copy h3,
.index,
.reference-visual figcaption span,
.work-card h3,
.credentials-block h3,
h1,
h2,
h3 {
  color: var(--ink);
}

.reel-panel,
.video-frame,
.practice-grid article,
.reference-visual,
.motion-video-trigger,
.work-card,
.contact-card,
.credentials-block,
.site-footer {
  color: var(--ink);
  background: #f7f7f4;
  border-color: rgba(42, 42, 42, 0.1);
}

.reference-visual figcaption {
  background: #f7f7f4;
  border-top-color: rgba(42, 42, 42, 0.1);
}

.reference-visual.poster,
.reference-visual.poster img {
  background: transparent;
}

.practice-grid {
  background: rgba(42, 42, 42, 0.1);
  border-color: rgba(42, 42, 42, 0.1);
}

.ia-reference,
.motion-reference,
.examples-heading,
.credentials,
.process-line {
  border-color: rgba(42, 42, 42, 0.12);
}

.process-line span {
  border-right-color: rgba(42, 42, 42, 0.1);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(42, 42, 42, 0.22);
}

.button:hover {
  color: #ffffff;
  background: rgba(225, 25, 25, 0.82);
  border-color: rgba(225, 25, 25, 0.82);
}

.mail-link,
.phone-link:hover {
  color: var(--ink);
}

.mail-link:hover {
  color: var(--orange);
}
