:root {
  --bg: #0a0b0b;
  --ink: #f4f0e8;
  --muted: #b9beb5;
  --line: rgba(244, 240, 232, 0.18);
  --accent: #f2762e;
  --green: #8cab74;
  --panel: #151715;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  overflow-x: clip;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(10, 11, 11, 0.82), transparent);
}

.brand {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: rgba(244, 240, 232, 0.78);
  font-size: 0.9rem;
}

nav a {
  transition: color 180ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 104px clamp(18px, 6vw, 76px) 58px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 28%, rgba(242, 118, 46, 0.42), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(140, 171, 116, 0.28), transparent 30%),
    linear-gradient(140deg, #080908 5%, #111411 48%, #2a2019 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 11, 11, 0.88), rgba(10, 11, 11, 0.25) 54%, rgba(10, 11, 11, 0.65)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 5px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg) 78%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.film-strip {
  position: absolute;
  right: clamp(-120px, -7vw, -40px);
  top: 10%;
  width: min(42vw, 520px);
  min-width: 320px;
  transform: rotate(-8deg);
  display: grid;
  gap: 14px;
  opacity: 0.72;
}

.film-strip span {
  display: block;
  height: clamp(72px, 9vw, 116px);
  border: 1px solid rgba(244, 240, 232, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.13), transparent 38%),
    linear-gradient(135deg, rgba(242, 118, 46, 0.45), rgba(18, 24, 22, 0.76) 46%, rgba(140, 171, 116, 0.36));
  box-shadow: inset 0 0 0 10px rgba(10, 11, 11, 0.42);
}

.frame {
  position: absolute;
  border: 1px solid rgba(244, 240, 232, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(244, 240, 232, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(2px);
}

.frame-a {
  right: 15vw;
  bottom: 17vh;
  width: 210px;
  aspect-ratio: 16 / 9;
}

.frame-b {
  right: 34vw;
  top: 24vh;
  width: 150px;
  aspect-ratio: 4 / 5;
}

.frame-c {
  right: 7vw;
  bottom: 39vh;
  width: 116px;
  aspect-ratio: 1;
}

.hero-content {
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4.2rem, 13vw, 9.8rem);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
  max-width: 6ch;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  color: rgba(244, 240, 232, 0.82);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.45;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(244, 240, 232, 0.58);
}

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

.button.secondary {
  background: rgba(244, 240, 232, 0.06);
}

.work-section,
.profile-section,
footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(18px, 5vw, 44px);
}

.work-section {
  padding-top: clamp(52px, 8vw, 92px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 780px);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.client-group {
  margin-bottom: clamp(42px, 7vw, 72px);
}

.client-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.client-heading p:last-child {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(244, 240, 232, 0.68);
  line-height: 1.45;
}

.link-heading {
  margin-top: 4px;
}

.work-collection {
  display: grid;
  gap: clamp(28px, 5vw, 46px);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.longform-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.longform-media {
  background: #090a09;
}

.longform-media iframe,
.longform-media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 720px;
  background:
    linear-gradient(135deg, rgba(242, 118, 46, 0.18), transparent),
    #090a09;
  object-fit: cover;
}

.video-details {
  padding: 18px;
}

.video-details .work-number {
  display: block;
  margin-bottom: 12px;
}

.video-details h3 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1;
}

.video-details p {
  margin-bottom: 0;
  color: rgba(244, 240, 232, 0.68);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.54);
  color: rgba(244, 240, 232, 0.86);
  font-size: 0.92rem;
  font-weight: 850;
}

.work-number,
.video-details h3,
.video-details p {
  position: relative;
  z-index: 1;
}

.work-number {
  align-self: flex-start;
  margin-bottom: auto;
  color: rgba(244, 240, 232, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 8vw, 82px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.profile-section p:not(.eyebrow) {
  color: rgba(244, 240, 232, 0.76);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 6vw, 76px);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 82px) clamp(18px, 5vw, 44px);
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(244, 240, 232, 0.74);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  line-height: 1.55;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(244, 240, 232, 0.7);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 240, 232, 0.06);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px 13px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 118, 46, 0.72);
}

.message-field,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  justify-self: start;
  cursor: pointer;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  padding-bottom: 30px;
  color: rgba(244, 240, 232, 0.68);
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  .hero {
    min-height: 86svh;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .film-strip {
    right: -180px;
    top: 18%;
    opacity: 0.45;
  }

  .frame-a,
  .frame-b,
  .frame-c {
    opacity: 0.5;
  }

  .section-heading,
  .client-heading,
  .profile-section,
  .contact-section,
  .longform-card,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .client-heading {
    display: grid;
    align-items: start;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .video-card video {
    max-height: none;
  }

  .longform-media iframe,
  .longform-media video {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

}

@media (max-width: 520px) {
  nav {
    gap: 14px;
  }

  .brand {
    max-width: 120px;
  }

  h1 {
    font-size: clamp(3.5rem, 20vw, 5.8rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    flex: 1 1 138px;
  }

}
