@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=Space+Grotesk:wght@400;500;600&display=swap");

:root {
  --ink: #070807;
  --paper: #f0eee8;
  --paper-soft: #d3d1ca;
  --line: rgba(240, 238, 232, 0.2);
  --accent: #c7ff28;
  --page: min(100% - 48px, 1420px);
  --header-h: 78px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

em {
  font-style: italic;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(7, 8, 7, 0.88), rgba(7, 8, 7, 0));
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 8, 7, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 11px;
  letter-spacing: -0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 44px);
  font-size: 14px;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--paper);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 64px) clamp(32px, 5vw, 84px) 70px;
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(76px, 10vw, 168px);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.77;
}

.hero-role {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(19px, 2vw, 29px);
  line-height: 1.2;
}

.hero-role-secondary {
  margin-top: 5px;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.5vw, 22px);
}

.hero-intro {
  max-width: 600px;
  margin: 38px 0 0;
  color: var(--paper-soft);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 300;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--paper);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button-solid {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.button-solid:hover,
.button-solid:focus-visible {
  border-color: var(--paper);
  background: var(--paper);
}

.button-line:hover,
.button-line:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-media {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #161816;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(7, 8, 7, 0.06), rgba(7, 8, 7, 0.15) 55%, rgba(7, 8, 7, 0.64));
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.66) contrast(1.05);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.1, 1);
}

.hero:hover .hero-media img {
  transform: scale(1.025);
}

.motion-ring {
  position: absolute;
  z-index: 2;
  top: 16%;
  right: -10%;
  width: min(37vw, 540px);
  aspect-ratio: 1;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: drift 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-index {
  position: absolute;
  bottom: 24px;
  left: 32px;
  color: rgba(240, 238, 232, 0.46);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.credit-line {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(96px, 10vw, 170px) 0;
}

.section-heading {
  display: grid;
  margin-bottom: clamp(56px, 7vw, 100px);
  grid-template-columns: minmax(160px, 0.65fr) 2fr;
  gap: 32px;
  align-items: start;
}

.section-heading .eyebrow {
  margin-top: 10px;
}

.section h2,
.statement-text,
.contact h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(45px, 6vw, 94px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 58px 22px;
}

.showreel-feature {
  grid-column: 1 / -1;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.showreel-feature-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.showreel-feature-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 4.4vw, 66px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.showreel-feature-head p {
  margin: 0;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showreel-player {
  margin-top: 18px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  background: #000;
}

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

.work-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.work-card-wide {
  grid-column: 1 / -1;
}

.work-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #161816;
}

.work-card-wide .work-image {
  aspect-ratio: 2.15 / 1;
}

.work-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 7, 0.36), transparent 45%);
  content: "";
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: filter 400ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.work-card:hover .work-image img,
.work-card:focus-visible .work-image img {
  filter: saturate(1);
  transform: scale(1.035);
}

.card-play {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(7, 8, 7, 0.18);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.work-card:hover .card-play,
.work-card:focus-visible .card-play {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.work-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.work-meta > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.work-meta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 500;
}

.work-meta small,
.work-meta > span:last-child {
  color: var(--paper-soft);
}

.statement {
  position: relative;
  display: grid;
  min-height: 78vh;
  align-content: center;
  padding: clamp(90px, 10vw, 170px) max(24px, calc((100% - 1420px) / 2));
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--accent);
  color: var(--ink);
}

.statement::after {
  position: absolute;
  right: -7vw;
  bottom: -25vw;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 8, 7, 0.28);
  border-radius: 50%;
  content: "";
}

.statement-kicker {
  margin: 0 0 34px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement-text {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  font-size: clamp(48px, 7.4vw, 116px);
}

.practice-list {
  border-top: 1px solid var(--line);
}

.practice-item {
  display: grid;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(160px, 0.65fr) 2fr;
  gap: 32px;
}

.practice-number {
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
}

.practice-item h3 {
  margin: 0 0 17px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(25px, 3.2vw, 47px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.practice-item p {
  max-width: 800px;
  margin: 0;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.55vw, 22px);
  font-weight: 300;
}

.text-link {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(400px, 1.2fr);
  gap: clamp(50px, 8vw, 135px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-height: 820px;
  object-fit: cover;
  object-position: center 28%;
  filter: grayscale(1) contrast(1.04);
}

.image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-copy h2 {
  margin-bottom: 43px;
}

.about-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--paper-soft);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 300;
}

.about-copy .about-lead {
  color: var(--paper);
  font-size: clamp(21px, 1.9vw, 29px);
  line-height: 1.42;
}

.about-notes {
  display: grid;
  margin-top: 42px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: center;
  color: var(--paper-soft);
  font-size: 13px;
}

.guild-membership {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.guild-membership > span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.guild-membership img {
  display: block;
  width: min(137px, 100%);
  height: auto;
  padding: 5px 7px;
  background: var(--paper);
  transition: transform 180ms ease;
}

.guild-membership:hover img,
.guild-membership:focus-visible img {
  transform: translateY(-2px);
}

.credits {
  border-top: 1px solid var(--line);
}

.credits-grid {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 7vw, 110px);
}

.credit-column h3 {
  margin: 0 0 22px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.credit-column ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.credit-column li {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
}

.credit-column li span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 1.6vw, 23px);
}

.credit-column li small {
  color: var(--paper-soft);
  text-align: right;
}

.contact {
  position: relative;
  display: grid;
  min-height: 88svh;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.contact > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
  filter: saturate(0.95) contrast(1.06) brightness(1.18);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 7, 0.12), rgba(7, 8, 7, 0.32));
}

.contact-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1200px);
}

.contact h2 {
  margin-bottom: 48px;
  font-size: clamp(58px, 10vw, 154px);
  line-height: 0.84;
  text-shadow: 0 4px 38px rgba(0, 0, 0, 0.72);
}

.contact-email {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: clamp(18px, 2vw, 29px);
}

.site-footer {
  display: grid;
  min-height: 120px;
  align-items: center;
  padding: 30px 32px;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  color: var(--paper-soft);
  font-size: 13px;
}

.site-footer > a {
  justify-self: end;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
}

.video-dialog {
  width: min(1100px, calc(100% - 36px));
  max-width: none;
  padding: 0;
  border: 1px solid rgba(240, 238, 232, 0.28);
  background: var(--ink);
  color: var(--paper);
}

.video-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(5px);
}

.video-dialog-inner {
  padding: 18px;
}

.video-dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 2px 0 16px;
}

.video-dialog-top h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.dialog-close {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-8%, 8%, 0) scale(0.88); }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 36px, 720px);
    --header-h: 68px;
  }

  .site-header {
    padding: 0 18px;
  }

  .menu-toggle {
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-icon,
  .menu-icon::before {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--paper);
    content: "";
    transition: transform 180ms ease;
  }

  .menu-icon::before {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon::before {
    transform: rotate(-90deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 28px;
    background: var(--ink);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a:not(.nav-cta) {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(36px, 11vw, 64px);
    letter-spacing: -0.04em;
  }

  .nav-cta {
    margin-top: 22px;
  }

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

  .hero-copy {
    min-height: 72svh;
    padding: calc(var(--header-h) + 55px) 20px 64px;
  }

  .hero h1 {
    font-size: clamp(78px, 26vw, 140px);
  }

  .hero-media {
    min-height: 68svh;
  }

  .motion-ring {
    top: 8%;
    right: -25%;
    width: 90vw;
  }

  .hero-index {
    display: none;
  }

  .credit-line {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 20px;
    scrollbar-width: none;
  }

  .credit-line span {
    flex: 0 0 auto;
  }

  .section-heading,
  .practice-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-heading .eyebrow {
    margin: 0 0 18px;
  }

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

  .about-image {
    width: min(100%, 560px);
  }
}

@media (max-width: 650px) {
  .brand-name {
    display: none;
  }

  .hero-actions,
  .work-meta,
  .about-notes,
  .credits-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

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

  .showreel-feature-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .work-card-wide {
    grid-column: auto;
  }

  .work-card-wide .work-image,
  .work-image {
    aspect-ratio: 4 / 3;
  }

  .work-meta {
    gap: 8px;
  }

  .about-notes,
  .credits-grid {
    gap: 24px;
  }

  .credit-column li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .credit-column li small {
    text-align: left;
  }

  .site-footer {
    justify-items: start;
  }

  .site-footer > a {
    justify-self: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .contact {
    min-height: 76svh;
  }

  .contact h2 {
    font-size: clamp(58px, 18vw, 88px);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
