@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@500;600;700;800&display=swap");

:root {
  --black: #050505;
  --ink: #111111;
  --white: #ffffff;
  --paper: #f2f2f0;
  --silver: #c0c0c0;
  --mid: #7d7d7a;
  --line: rgba(255, 255, 255, 0.2);
  --display: "Montserrat", "Arial Narrow", Arial, sans-serif;
  --body: "Inter", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
}

::selection {
  background: var(--silver);
  color: var(--black);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  height: 78px;
  left: 0;
  padding: 0 3.2vw;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand,
.footer-brand {
  align-items: center;
  display: flex;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  gap: 0.85rem;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.brand img {
  height: 44px;
  object-fit: contain;
  width: 44px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.2rem);
}

.desktop-nav a,
.header-cta,
.mobile-menu summary,
.mobile-menu nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--white);
  bottom: -0.65rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.header-cta span {
  color: var(--silver);
  font-size: 1rem;
  margin-left: 0.4rem;
}

.mobile-menu {
  display: none;
  justify-self: end;
  position: relative;
}

.mobile-menu summary {
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  background: var(--black);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 210px;
  padding: 1.5rem;
  position: absolute;
  right: 0;
  top: 2rem;
}

.hero {
  background: var(--black);
  color: var(--white);
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  inset: 0;
  position: absolute;
}

.hero-image img {
  filter: grayscale(1) contrast(1.1);
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-image::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.67) 38%, rgba(0, 0, 0, 0.12) 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-grain {
  background-image:
    repeating-radial-gradient(circle at 20% 30%, transparent 0 1px, rgba(255, 255, 255, 0.04) 1px 2px),
    repeating-radial-gradient(circle at 70% 65%, transparent 0 2px, rgba(255, 255, 255, 0.025) 2px 3px);
  background-size: 7px 7px, 11px 11px;
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
}

.hero-mark {
  filter: opacity(0.09);
  position: absolute;
  right: -2rem;
  top: 14%;
  transform: rotate(-5deg) scale(1.45);
}

.hero-kicker {
  align-items: center;
  display: flex;
  font-size: 0.6rem;
  font-weight: 500;
  gap: 4rem;
  left: 3.2vw;
  letter-spacing: 0.24em;
  position: absolute;
  right: 3.2vw;
  text-transform: uppercase;
  top: 112px;
  z-index: 2;
}

.hero-kicker span:last-child {
  margin-left: auto;
}

.hero-kicker::before {
  background: var(--silver);
  content: "";
  height: 1px;
  order: 2;
  opacity: 0.65;
  width: 80px;
}

.hero-kicker span:last-child {
  order: 3;
}

.hero-copy {
  bottom: clamp(3.25rem, 8vh, 7rem);
  left: 3.2vw;
  max-width: 1050px;
  position: absolute;
  right: 3.2vw;
  z-index: 3;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.65rem;
  font-weight: 600;
  gap: 0.9rem;
  letter-spacing: 0.22em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

.eyebrow::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 38px;
}

.eyebrow.light {
  color: var(--white);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.services-heading h2,
.contact-section h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4rem, 9.6vw, 9.6rem);
  max-width: 12ch;
}

.hero h1 em,
.contact-section h2 em {
  color: var(--silver);
  font-style: normal;
  font-weight: 500;
}

.hero-bottom {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
}

.hero-bottom p {
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 300;
  margin: 0;
  max-width: 36ch;
}

.text-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.67rem;
  font-weight: 600;
  gap: 1rem;
  letter-spacing: 0.16em;
  padding-bottom: 0.55rem;
  position: relative;
  text-transform: uppercase;
}

.text-link::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transition: width 220ms ease;
  width: 100%;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 55%;
}

.manifesto {
  align-items: start;
  background: var(--paper);
  display: grid;
  gap: 4rem;
  grid-template-columns: 0.5fr 3fr 1fr;
  padding: clamp(5rem, 10vw, 10rem) 3.2vw;
}

.section-number {
  color: var(--mid);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.manifesto-lead {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
  margin: 0;
  max-width: 19ch;
  text-transform: uppercase;
}

.manifesto-lead strong {
  font-weight: 800;
}

.manifesto-side {
  align-self: end;
  border-left: 1px solid #b8b8b4;
  color: #555552;
  font-size: 0.92rem;
  margin: 0;
  padding-left: 1.25rem;
}

.work-section {
  background: var(--white);
  padding: clamp(5rem, 8vw, 8rem) 3.2vw;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading h2,
.about-copy h2,
.services-heading h2 {
  font-size: clamp(3rem, 6vw, 6.4rem);
  max-width: 12ch;
}

.reel-intro {
  border-left: 1px solid #b8b8b4;
  color: #555552;
  font-size: 0.92rem;
  margin: 0;
  max-width: 38ch;
  padding-left: 1.25rem;
}

.filters {
  border-bottom: 1px solid #cfcfcb;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 0.75rem;
}

.filters button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  opacity: 0.45;
  padding: 0;
  text-transform: uppercase;
}

.filters button.active,
.filters button:hover,
.filters button:focus-visible {
  opacity: 1;
}

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

.work-card {
  grid-column: span 4;
  margin: 0 0 4rem;
}

.work-card:nth-child(5n + 1),
.work-card:nth-child(5n + 4) {
  grid-column: span 7;
}

.work-card:nth-child(5n + 2),
.work-card:nth-child(5n + 5) {
  grid-column: span 5;
}

.work-image {
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
  position: relative;
}

.work-image::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 45%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.work-image img {
  filter: grayscale(1) contrast(1.08);
  object-fit: cover;
  transition: filter 400ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.work-index,
.work-arrow {
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  position: absolute;
  top: 1rem;
  z-index: 2;
}

.work-index {
  left: 1rem;
}

.work-arrow {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  font-size: 1rem;
  height: 38px;
  justify-content: center;
  right: 1rem;
  transform: translateY(-8px);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
  width: 38px;
}

.work-card a:hover .work-arrow,
.work-card a:focus-visible .work-arrow {
  background: var(--white);
  color: var(--black);
  transform: translateY(0);
}

.work-meta {
  align-items: baseline;
  border-top: 1px solid var(--ink);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.9rem;
}

.work-meta h3 {
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.4vw, 1.25rem);
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

.work-meta p {
  color: var(--mid);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  margin: 0;
  text-align: right;
  text-transform: uppercase;
}

.reel-callout {
  align-items: end;
  background: var(--silver);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.6fr 2fr auto;
  margin-top: 1rem;
  padding: clamp(2rem, 4vw, 4.5rem);
}

.reel-callout > p {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.reel-callout h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
  margin: 0;
  max-width: 15ch;
  text-transform: uppercase;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 600;
  gap: 3rem;
  justify-content: space-between;
  letter-spacing: 0.15em;
  min-height: 56px;
  padding: 0 1.4rem;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--black);
  color: var(--white);
}

.about-section {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
}

.about-image {
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.about-image::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

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

.about-image-label {
  bottom: 2rem;
  color: var(--white);
  display: flex;
  font-size: 0.62rem;
  font-weight: 600;
  justify-content: space-between;
  left: 2rem;
  letter-spacing: 0.16em;
  position: absolute;
  right: 2rem;
  text-transform: uppercase;
  z-index: 2;
}

.about-copy {
  align-self: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.about-copy h2 {
  max-width: 9ch;
}

.about-rule {
  background: var(--ink);
  height: 1px;
  margin: 3rem 0;
  width: 100%;
}

.about-copy > p:not(.eyebrow) {
  color: #4b4b48;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  margin: 0 0 1.4rem;
  max-width: 55ch;
}

.about-copy .about-lead {
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 2rem) !important;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.22;
  text-transform: uppercase;
}

.about-copy .text-link {
  margin-top: 2rem;
}

.services-section {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) 3.2vw 0;
}

.services-heading {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 2fr 1fr;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.services-heading .eyebrow {
  align-self: start;
}

.services-heading h2 {
  max-width: 10ch;
}

.services-heading > p:last-child {
  color: #a5a5a1;
  font-size: 0.9rem;
  margin: 0;
  max-width: 34ch;
}

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

.service-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.4fr 1.8fr 1fr;
  padding: 2.2rem 0;
  transition: background 220ms ease, padding 220ms ease;
}

.service-row:hover {
  background: #111;
  padding-left: 1rem;
  padding-right: 1rem;
}

.service-row > span {
  color: var(--silver);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.service-row h3 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.service-row p {
  color: #a5a5a1;
  font-size: 0.86rem;
  margin: 0;
  max-width: 48ch;
}

.studio-strip {
  align-items: center;
  display: flex;
  font-family: var(--display);
  font-size: 0.65rem;
  gap: clamp(1rem, 3vw, 3rem);
  justify-content: center;
  letter-spacing: 0.4em;
  margin: clamp(5rem, 9vw, 9rem) -3.2vw 0;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
}

.studio-image {
  inset: 0;
  position: absolute;
}

.studio-image::after {
  background: rgba(0, 0, 0, 0.68);
  content: "";
  inset: 0;
  position: absolute;
}

.studio-image img {
  filter: grayscale(1);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.studio-strip > p,
.studio-strip > span {
  position: relative;
  z-index: 2;
}

.contact-section {
  background: var(--black);
  border-top: 1px solid var(--line);
  color: var(--white);
  padding: clamp(5rem, 10vw, 10rem) 3.2vw;
}

.contact-section h2 {
  font-size: clamp(3.8rem, 8.7vw, 9.2rem);
  max-width: 13ch;
}

.contact-bottom {
  align-items: end;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 3rem;
  justify-content: space-between;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-top: 2rem;
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--white);
  color: var(--black);
}

.contact-details {
  display: grid;
  font-size: 0.67rem;
  gap: 0.45rem;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.contact-details span {
  color: #8b8b87;
}

footer {
  align-items: center;
  background: var(--black);
  border-top: 1px solid var(--line);
  color: var(--white);
  display: grid;
  font-size: 0.62rem;
  gap: 2rem;
  grid-template-columns: 1.2fr 1fr 1fr;
  letter-spacing: 0.13em;
  padding: 2.5rem 3.2vw;
  text-transform: uppercase;
}

.footer-brand img {
  height: 46px;
  object-fit: contain;
  width: 46px;
}

footer > p {
  color: #a0a09d;
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

footer .copyright {
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  text-align: left;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .manifesto {
    gap: 2.5rem;
    grid-template-columns: 0.4fr 2fr;
  }

  .manifesto-side {
    grid-column: 2;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .work-card,
  .work-card:nth-child(5n + 1),
  .work-card:nth-child(5n + 2),
  .work-card:nth-child(5n + 4),
  .work-card:nth-child(5n + 5) {
    grid-column: span 6;
  }

  .reel-callout {
    grid-template-columns: 1fr 2fr;
  }

  .reel-callout .button {
    grid-column: 2;
    justify-self: start;
  }

  .about-section {
    min-height: auto;
  }

  .about-copy {
    padding: 5rem 6vw;
  }

  .services-heading {
    grid-template-columns: 1fr 2fr;
  }

  .services-heading > p:last-child {
    grid-column: 2;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer > p:not(.copyright) {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 66px;
    padding: 0 1.1rem;
  }

  .brand span {
    display: none;
  }

  .brand img {
    height: 38px;
    width: 38px;
  }

  .hero-kicker {
    left: 1.1rem;
    right: 1.1rem;
    top: 94px;
  }

  .hero-kicker::before,
  .hero-kicker span:last-child {
    display: none;
  }

  .hero-image img {
    object-position: 58% center;
  }

  .hero-image::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.3)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, transparent 70%);
  }

  .hero-mark {
    right: -10rem;
    top: 24%;
  }

  .hero-copy {
    bottom: 2rem;
    left: 1.1rem;
    right: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5.7rem);
  }

  .hero-bottom {
    align-items: start;
    flex-direction: column;
    margin-top: 1.8rem;
  }

  .manifesto,
  .work-section,
  .services-section,
  .contact-section {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .manifesto {
    display: block;
  }

  .section-number {
    margin-bottom: 2rem;
  }

  .manifesto-side {
    margin-top: 2.5rem;
  }

  .filters {
    gap: 1rem;
  }

  .work-card,
  .work-card:nth-child(5n + 1),
  .work-card:nth-child(5n + 2),
  .work-card:nth-child(5n + 4),
  .work-card:nth-child(5n + 5) {
    grid-column: 1 / -1;
    margin-bottom: 2.8rem;
  }

  .work-meta {
    display: block;
  }

  .work-meta p {
    margin-top: 0.4rem;
    text-align: left;
  }

  .reel-callout {
    display: block;
    padding: 2rem 1.25rem;
  }

  .reel-callout h3 {
    margin: 1.2rem 0 2rem;
  }

  .about-section {
    display: block;
  }

  .about-image {
    min-height: 72svh;
  }

  .about-copy {
    padding: 5rem 1.1rem;
  }

  .services-heading {
    display: block;
  }

  .services-heading > p:last-child {
    margin-top: 2rem;
  }

  .service-row {
    grid-template-columns: 0.35fr 1.65fr;
  }

  .service-row p {
    grid-column: 2;
  }

  .studio-strip {
    flex-wrap: wrap;
    margin-left: -1.1rem;
    margin-right: -1.1rem;
    padding: 2rem;
  }

  .contact-section h2 {
    font-size: clamp(3.35rem, 15.5vw, 6rem);
  }

  .contact-bottom {
    align-items: start;
    flex-direction: column;
  }

  .contact-details {
    text-align: left;
  }

  footer {
    align-items: start;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.1rem;
  }

  .footer-links {
    justify-content: start;
  }

  footer .copyright {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
