@font-face {
  font-family: "Bebas Neue Local";
  src: url("/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #0A0A0A;
  --surface: #141414;
  --elevated: #1E1E1E;
  --orange: #D4602A;
  --orange-light: #E8834E;
  --aged: #E8E0D4;
  --cream: #F5F0E8;
  --warm-gray: #9E958A;
  --mid-gray: #6B6360;
  --dark-gray: #3A3634;
  --display: "Bebas Neue Local", "Arial Narrow", sans-serif;
  --label: "Oswald", sans-serif;
  --body: "Inter", sans-serif;
  --quote: "Playfair Display", serif;
  --page: min(1180px, calc(100vw - 48px));
  --line: rgba(232, 224, 212, 0.16);
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 81% 12%, rgba(212, 96, 42, 0.08), transparent 26rem),
    linear-gradient(180deg, #0A0A0A 0%, #0C0B0A 55%, #0A0A0A 100%);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    repeating-radial-gradient(circle at 12% 18%, transparent 0, rgba(255, 255, 255, 0.2) 0.4px, transparent 0.8px, transparent 3px),
    repeating-linear-gradient(89deg, transparent 0, transparent 4px, rgba(255, 255, 255, 0.018) 5px);
  mix-blend-mode: soft-light;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--aged);
  outline-offset: 4px;
}

::selection {
  background: var(--orange);
  color: var(--cream);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--aged);
  color: var(--black);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: var(--page);
  margin: 0 auto;
  padding: 26px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.035em;
}

.brand-line {
  color: var(--warm-gray);
  font-family: var(--label);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav > a:not(.nav-cta) {
  color: var(--warm-gray);
  transition: color 160ms ease;
}

.primary-nav > a:not(.nav-cta):hover {
  color: var(--cream);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--aged);
  border-radius: var(--radius);
  color: var(--aged);
  transition: background 160ms ease, color 160ms ease;
}

.nav-cta:hover {
  background: var(--aged);
  color: var(--black);
}

.hero {
  position: relative;
  display: grid;
  width: var(--page);
  min-height: 800px;
  margin: 0 auto;
  padding: 66px 0 44px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr;
  column-gap: 24px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / span 7;
  align-self: center;
  padding: 30px 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-light);
  font-family: var(--label);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section-shell h2,
.closing-cta h2,
.page-message h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.016em;
  line-height: 0.91;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.4rem, 7.4vw, 7.5rem);
}

.hero h1 span {
  color: var(--aged);
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--warm-gray);
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 38px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 18px;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: var(--radius);
  font-family: var(--label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--aged);
  color: var(--black);
}

.button-primary:hover {
  background: var(--cream);
}

.button-light {
  background: var(--cream);
  color: var(--black);
}

.text-link {
  padding: 10px 0 7px;
  border-bottom: 1px solid var(--dark-gray);
  color: var(--aged);
  font-family: var(--label);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 160ms ease;
}

.text-link:hover {
  border-color: var(--orange-light);
}

.availability {
  display: flex;
  margin: 28px 0 0;
  gap: 10px;
  align-items: center;
  color: var(--warm-gray);
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 0 4px rgba(232, 131, 78, 0.12);
}

.hero-portrait {
  position: absolute;
  top: 52px;
  right: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
  bottom: 0;
  width: min(62vw, 900px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--surface);
}

.hero-portrait::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, var(--black) 0%, rgba(10, 10, 10, 0.8) 17%, transparent 49%), linear-gradient(0deg, rgba(10, 10, 10, 0.9) 0%, transparent 30%);
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.86) contrast(1.02);
}

.hero-portrait figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(245, 240, 232, 0.7);
  font-family: var(--label);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-shell {
  position: relative;
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 24px;
  border-bottom: 1px solid var(--line);
}

.section-marker {
  position: absolute;
  top: 154px;
  left: -76px;
  color: var(--mid-gray);
  font-family: var(--label);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
}

.section-shell h2 {
  font-size: clamp(3.8rem, 6vw, 6.6rem);
}

.about-heading {
  grid-column: 1 / span 7;
}

.about-copy {
  grid-column: 8 / -1;
  padding-top: 42px;
  color: var(--warm-gray);
}

.about-lead {
  margin-top: 0;
  color: var(--aged);
  font-family: var(--quote);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-style: italic;
  line-height: 1.35;
}

.about-copy blockquote {
  margin: 42px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--orange);
}

.about-copy blockquote p {
  margin: 0;
  color: var(--aged);
  font-family: var(--label);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.connect {
  align-items: start;
}

.connect-intro {
  grid-column: 1 / span 5;
  position: sticky;
  top: 40px;
}

.connect-intro > p:not(.eyebrow, .minor-note, .crisis-note, .no-pitch-note) {
  max-width: 500px;
  margin-top: 28px;
  color: var(--warm-gray);
}

.no-pitch-note {
  margin-top: 16px;
  color: var(--orange-light);
  font-family: var(--label);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.minor-note {
  margin-top: 26px;
  padding-left: 16px;
  border-left: 2px solid var(--dark-gray);
  color: var(--warm-gray);
  font-size: 0.82rem;
  line-height: 1.55;
}

.minor-note strong {
  color: var(--aged);
  font-weight: 500;
}

.crisis-note {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(232, 224, 212, 0.14);
  background: rgba(232, 224, 212, 0.035);
  color: var(--warm-gray);
  font-size: 0.78rem;
  line-height: 1.55;
}

.crisis-note strong {
  color: var(--aged);
  font-weight: 500;
}

.crisis-note a {
  color: var(--orange-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.conversation-form {
  grid-column: 7 / -1;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(232, 224, 212, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(232, 224, 212, 0.035), transparent 40%),
    var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.form-heading {
  display: flex;
  margin-bottom: 32px;
  padding-bottom: 18px;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  color: var(--aged);
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.form-heading span {
  color: var(--mid-gray);
  font-family: var(--label);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.conversation-form label {
  display: grid;
  margin-top: 24px;
  gap: 9px;
  color: var(--aged);
  font-family: var(--label);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field-row label {
  margin-top: 0;
}

.conversation-form input,
.conversation-form select,
.conversation-form textarea {
  width: 100%;
  border: 1px solid var(--dark-gray);
  border-radius: 4px;
  background: #0F0F0F;
  color: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.conversation-form input,
.conversation-form select {
  min-height: 48px;
  padding: 10px 12px;
}

.conversation-form textarea {
  min-height: 118px;
  padding: 12px;
  resize: vertical;
}

.conversation-form input:hover,
.conversation-form select:hover,
.conversation-form textarea:hover,
.conversation-form input:focus,
.conversation-form select:focus,
.conversation-form textarea:focus {
  border-color: var(--warm-gray);
  background: #11100F;
}

.conversation-form .check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--warm-gray);
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.check-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}

.form-submit {
  width: 100%;
  margin-top: 28px;
}

.form-privacy {
  margin: 14px 0 0;
  color: var(--mid-gray);
  font-size: 0.72rem;
  line-height: 1.5;
}

.watch {
  row-gap: 60px;
}

.watch-heading {
  grid-column: 1 / span 7;
}

.watch-heading p:last-child {
  margin: 24px 0 0;
  color: var(--warm-gray);
}

.reel-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.reel-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  isolation: isolate;
}

.reel-card-offset {
  margin-top: 54px;
}

.reel-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.05) 30%, rgba(10, 10, 10, 0.96) 100%);
}

.reel-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.82) contrast(1.02);
  transition: transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 420ms ease;
}

.reel-card:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.03);
}

.reel-number,
.reel-title,
.reel-action {
  position: absolute;
  z-index: 2;
}

.reel-number {
  top: 16px;
  left: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(245, 240, 232, 0.5);
  border-radius: 50%;
  font-family: var(--label);
  font-size: 0.65rem;
}

.reel-title {
  right: 20px;
  bottom: 52px;
  left: 20px;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.reel-action {
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--orange-light);
  font-family: var(--label);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work {
  row-gap: 52px;
}

.work-heading {
  grid-column: 1 / span 8;
}

.work-list {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
}

.work-row {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 64px 2fr 2fr 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.work-row:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(232, 224, 212, 0.035);
}

.work-index,
.work-status {
  color: var(--mid-gray);
  font-family: var(--label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-name {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.work-description {
  color: var(--warm-gray);
}

.work-status {
  justify-self: end;
  color: var(--orange-light);
}

.closing-cta {
  display: grid;
  min-height: 620px;
  padding: 100px 24px;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 96, 42, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(10, 10, 10, 0.96), #0A0A0A);
}

.closing-cta h2 {
  max-width: 1000px;
  font-size: clamp(4rem, 7vw, 7.7rem);
}

.closing-cta h2 span {
  color: var(--orange-light);
}

.closing-cta .button {
  margin-top: 40px;
}

.site-footer {
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: 34px 0;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--mid-gray);
  font-family: var(--label);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer > div {
  display: flex;
  gap: 12px;
}

.footer-name {
  color: var(--aged);
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer nav a {
  color: var(--warm-gray);
}

.site-footer nav a:hover {
  color: var(--cream);
}

.site-footer > p {
  margin: 0;
  justify-self: end;
}

.page-message {
  display: grid;
  width: var(--page);
  min-height: calc(100vh - 180px);
  margin: 0 auto;
  padding: 80px 0;
  place-items: center;
  text-align: center;
}

.page-message > div {
  max-width: 820px;
}

.page-message h1 {
  font-size: clamp(4.6rem, 9vw, 9rem);
}

.page-message p:not(.eyebrow) {
  max-width: 580px;
  margin: 28px auto 0;
  color: var(--warm-gray);
  font-size: 1.05rem;
}

.page-message .button {
  margin-top: 36px;
}

@media (max-width: 1120px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    grid-column: 1 / span 8;
  }

  .hero-portrait {
    width: 66vw;
    opacity: 0.82;
  }

  .hero-portrait figcaption {
    left: 58%;
  }

  .section-marker {
    display: none;
  }
}

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

  .primary-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    grid-template-rows: auto auto;
  }

  .hero-copy {
    grid-column: 1 / -1;
    padding: 20px 0 44px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 14vw, 7rem);
  }

  .hero-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: calc(100vw - 18px);
    height: min(92vw, 650px);
    margin-right: calc((100vw - var(--page)) / -2);
    grid-column: 1 / -1;
    opacity: 1;
  }

  .hero-portrait::before {
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.8) 0%, transparent 36%);
  }

  .hero-portrait img {
    object-position: 60% center;
  }

  .hero-portrait figcaption {
    left: 20px;
  }

  .section-shell {
    padding: 110px 0;
  }

  .about-heading,
  .about-copy,
  .connect-intro,
  .conversation-form,
  .watch-heading,
  .work-heading {
    grid-column: 1 / -1;
  }

  .about-copy {
    padding-top: 52px;
  }

  .connect-intro {
    position: static;
  }

  .conversation-form {
    margin-top: 52px;
  }

  .reel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reel-title {
    font-size: clamp(1.3rem, 4vw, 2rem);
  }

  .work-row {
    grid-template-columns: 44px 1fr auto;
  }

  .work-description {
    display: none;
  }

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

  .site-footer nav {
    justify-self: end;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

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

  .brand-line {
    display: none;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18.3vw, 5.8rem);
  }

  .hero-lead {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-portrait {
    height: 122vw;
    max-height: 650px;
  }

  .hero-portrait img {
    object-position: 61% center;
  }

  .hero-portrait figcaption span:last-child {
    display: none;
  }

  .section-shell {
    padding: 88px 0;
  }

  .section-shell h2 {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .conversation-form {
    padding: 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .reel-card,
  .reel-card-offset {
    margin-top: 0;
  }

  .reel-card img {
    aspect-ratio: 5 / 6;
  }

  .reel-title {
    font-size: 2.4rem;
  }

  .work-row {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .work-status {
    grid-column: 2;
    justify-self: start;
  }

  .closing-cta {
    min-height: 540px;
    padding: 70px 18px;
  }

  .closing-cta h2 {
    font-size: clamp(3.7rem, 17vw, 5.4rem);
  }

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

  .site-footer nav,
  .site-footer > p {
    justify-self: start;
  }
}

@media (max-width: 360px) and (max-height: 650px) {
  .site-header {
    padding-block: 12px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .nav-cta {
    padding: 8px;
    font-size: 0.56rem;
  }

  .hero {
    padding-top: 22px;
  }

  .hero h1 {
    font-size: 3.3rem;
    line-height: 0.9;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 24px;
    gap: 16px;
  }

  .button {
    min-height: 46px;
  }
}

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

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