:root {
  --orange: #ec5f2a;
  --orange-bright: #ff5a18;
  --ink: #202020;
  --charcoal: #2d2d2d;
  --charcoal-soft: #353535;
  --paper: #f4f3ef;
  --white: #fffdf9;
  --muted: #a9a6a1;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(32, 32, 32, 0.18);
  --gutter: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  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: "PP Neue Montreal", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
a,
input,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  appearance: none;
}

a {
  text-decoration: none;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange-bright);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.orange {
  color: var(--orange-bright);
}

.eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 34px;
  color: var(--white);
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.header-wordmark {
  font-size: 16px;
  line-height: 1;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
}

.header-wordmark sup,
.menu-bar sup,
.footer-inner sup,
.simple-footer sup,
.eyebrow sup {
  position: relative;
  top: -0.3em;
  font-size: 0.55em;
}

.header-mark-button {
  position: relative;
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  overflow: hidden;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--orange-bright);
  cursor: pointer;
  transition: transform 420ms var(--ease), background 300ms ease;
}

.header-mark-button:hover {
  transform: scale(1.06) rotate(3deg);
}

.header-mark-button img {
  width: 29px;
  height: 24px;
  object-fit: cover;
  object-position: center top;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px 34px 32px;
  background: #171717;
  color: var(--paper);
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 400ms ease, transform 500ms var(--ease);
}

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

.menu-bar,
.menu-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.menu-bar button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-bar svg {
  width: 20px;
}

.menu-links {
  align-self: center;
  width: min(900px, 78vw);
  margin: 0 auto;
}

.menu-links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #8e8b87;
  font-size: 46px;
  line-height: 1.05;
  transition: color 240ms ease, padding 300ms var(--ease);
}

.menu-links a:hover,
.menu-links a[aria-current="page"] {
  padding-left: 14px;
  color: var(--paper);
}

.menu-links span {
  color: var(--orange-bright);
  font-size: 12px;
}

.menu-foot {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  isolation: isolate;
  background: #8e3e30;
}

.hero-video,
.hero-tone,
.hero-aperture {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}

.hero-video {
  z-index: 0;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.03) saturate(1.05);
  transform: scale(1.015);
  transition: filter 1200ms var(--ease);
}

.hero-tone {
  z-index: 1;
  pointer-events: none;
  transition: background-color 1200ms var(--ease), opacity 1200ms var(--ease);
}

body[data-daypart="morning"] .hero-tone {
  background: rgba(255, 247, 232, 0.07);
}

body[data-daypart="afternoon"] .hero-tone {
  background: rgba(223, 113, 36, 0.1);
  mix-blend-mode: color;
}

body[data-daypart="afternoon"] .hero-video {
  filter: brightness(0.99) saturate(1.04) sepia(0.04);
}

body[data-daypart="evening"] .hero-tone {
  background: rgba(125, 48, 30, 0.12);
  mix-blend-mode: multiply;
}

body[data-daypart="evening"] .hero-video {
  filter: brightness(0.9) saturate(1.08) sepia(0.05);
}

.hero-aperture {
  z-index: 2;
  object-fit: cover;
  object-position: center top;
  opacity: 0.1;
  pointer-events: none;
  animation: apertureBreathe 14s ease-in-out infinite alternate;
}

.hero-greeting {
  position: absolute;
  left: 50%;
  bottom: 15%;
  z-index: 3;
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 18px rgba(29, 13, 8, 0.3);
  transform: translateX(-50%);
}

.hero-scroll,
.section-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  right: 34px;
  bottom: 30px;
  z-index: 4;
  color: var(--white);
}

.hero-scroll svg,
.section-arrow svg {
  width: 17px;
  animation: arrowNudge 1.8s ease-in-out infinite;
}

.services-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.72fr);
  grid-template-rows: auto 1fr;
  min-height: 100svh;
  padding: 92px var(--gutter) 70px;
  background: var(--charcoal);
}

.services-heading {
  grid-column: 1;
  grid-row: 1;
  padding-right: 44px;
}

.services-heading h1 {
  max-width: 290px;
  margin: 20px 0 0;
  color: #d8d5d0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}

.service-selector {
  display: contents;
}

.service-option {
  position: relative;
  align-self: start;
  min-height: 140px;
  padding: 0 18px 26px 0;
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #8e8b87;
  cursor: pointer;
  transition: color 320ms ease, border-color 320ms ease;
}

.service-option::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--orange-bright);
  content: "";
  transition: width 500ms var(--ease);
}

.service-option.is-active {
  color: var(--paper);
}

.service-option.is-active::after {
  width: 100%;
}

.service-option span {
  display: block;
  margin-bottom: 24px;
  font-size: 12px;
}

.service-option strong {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.05;
}

.service-detail {
  display: grid;
  grid-column: 2 / 5;
  grid-row: 2;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 10vw;
  align-items: end;
  align-self: end;
  padding-bottom: 32px;
}

.service-detail > p {
  max-width: 590px;
  margin: 0;
  color: #d8d5d0;
  font-size: 18px;
  line-height: 1.4;
  transition: opacity 180ms ease, transform 240ms var(--ease);
}

.service-detail > p.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #1c1c1c;
}

.service-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 500ms ease, transform 900ms var(--ease);
}

.service-video.is-active {
  opacity: 1;
  transform: scale(1);
}

.section-arrow {
  position: absolute;
  left: var(--gutter);
  bottom: 54px;
  color: var(--orange-bright);
  border-color: rgba(236, 95, 42, 0.5);
}

.showreel {
  position: relative;
  height: 82svh;
  min-height: 620px;
  overflow: hidden;
  background: #151515;
}

.showreel video,
.studio-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-pill {
  position: absolute;
  right: 34px;
  bottom: 30px;
  display: inline-flex;
  min-height: 42px;
  padding: 0 20px;
  align-items: center;
  border-radius: 999px;
  background: var(--orange-bright);
  color: var(--white);
  font-size: 13px;
}

.partners {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 210px;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partners-label {
  display: flex;
  padding: 34px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper);
  font-size: 14px;
}

.logo-viewport {
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: logoTravel 34s linear infinite;
}

.logo-track img {
  width: 160px;
  height: 86px;
  margin: 0 14px;
  padding: 18px;
  object-fit: contain;
  border-radius: 6px;
  background: #e7e7e5;
  filter: grayscale(1) contrast(0.92);
}

.selected-projects {
  padding: 120px var(--gutter) 150px;
  background: var(--charcoal);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  margin-bottom: 90px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.06;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 84px;
  gap: 54px 32px;
}

.project-card {
  position: relative;
  display: block;
  min-width: 0;
  padding: 0 0 40px;
  overflow: visible;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.project-card-1 {
  grid-column: 1 / 7;
  grid-row: 1 / 7;
}

.project-card-2 {
  grid-column: 8 / 13;
  grid-row: 3 / 9;
}

.project-card-3 {
  grid-column: 2 / 6;
  grid-row: 8 / 13;
}

.project-card-4 {
  grid-column: 7 / 12;
  grid-row: 10 / 16;
}

.project-card-5 {
  grid-column: 1 / 6;
  grid-row: 15 / 21;
}

.project-card-6 {
  grid-column: 8 / 13;
  grid-row: 18 / 23;
}

.project-card img {
  width: 100%;
  height: calc(100% - 40px);
  object-fit: cover;
  transition: filter 350ms ease, transform 700ms var(--ease);
}

.project-card:hover img {
  filter: brightness(0.82);
  transform: scale(0.992);
}

.project-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #aaa7a2;
  font-size: 14px;
}

.project-card:hover span {
  color: var(--orange-bright);
}

.project-explorer {
  min-height: 100svh;
  padding: 110px var(--gutter) 100px;
  background: #171717;
}

.project-explorer-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}

.project-explorer h2 {
  margin: 14px 0 0;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}

.project-filters {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.project-filters button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.project-filters button[aria-pressed="true"] {
  background: var(--orange-bright);
  color: var(--white);
}

.project-explorer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  height: 680px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-map {
  min-width: 0;
  height: 100%;
  background: #101010;
  filter: saturate(0.65) contrast(1.08);
}

.project-list {
  overflow: auto;
  border-left: 1px solid var(--line);
}

.project-list-row {
  display: grid;
  grid-template-columns: 42px 1.35fr 0.7fr 1fr;
  gap: 18px;
  width: 100%;
  min-height: 88px;
  padding: 22px 24px;
  align-items: center;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.project-list-row:hover {
  background: #222;
  color: var(--paper);
}

.project-list-row span,
.project-list-row small,
.project-list-row em {
  font-size: 11px;
  font-style: normal;
  font-weight: 300;
}

.project-list-row strong {
  font-size: 14px;
  font-weight: 300;
}

.project-list-row em {
  color: #777470;
}

.orange-sky-map-marker {
  border: 0;
  background: transparent;
}

.map-marker {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  margin: 8px;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 0 7px rgba(236, 95, 42, 0.18);
}

.project-map-tooltip {
  padding: 10px 12px;
  border: 0;
  border-radius: 4px;
  background: #111;
  color: var(--paper);
  box-shadow: none;
}

.project-map-tooltip::before {
  border-top-color: #111;
}

.map-tooltip-title,
.map-tooltip-location {
  display: block;
  font-family: "PP Neue Montreal", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.map-tooltip-title {
  font-size: 12px;
}

.map-tooltip-location {
  margin-top: 4px;
  color: #777470;
  font-size: 10px;
}

.studio-cta {
  position: relative;
  display: block;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: #e8e8e8;
}

.studio-cta img {
  object-position: center bottom;
  transition: transform 1200ms var(--ease);
}

.studio-cta:hover img {
  transform: scale(1.012);
}

.site-footer {
  position: relative;
  height: 86svh;
  min-height: 660px;
  overflow: hidden;
  isolation: isolate;
}

.site-footer > video,
.footer-tone {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.site-footer > video {
  z-index: 0;
  object-fit: cover;
}

.footer-tone {
  z-index: 1;
  background: rgba(94, 41, 29, 0.34);
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: 1fr auto;
  width: 100%;
  height: 100%;
  padding: 76px var(--gutter) 34px;
  color: var(--white);
}

.footer-logo {
  align-self: center;
  justify-self: center;
  grid-column: 1 / 3;
  width: 132px;
  height: auto;
}

.footer-nav {
  display: flex;
  grid-column: 2;
  grid-row: 2;
  gap: 28px;
  justify-self: end;
  margin-bottom: 58px;
  font-size: 13px;
}

.footer-base {
  display: flex;
  grid-column: 1 / 3;
  grid-row: 3;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.footer-base p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-size: 9px;
}

.project-dialog {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
}

.project-dialog-panel {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  padding: 62px 5vw 28px;
  overflow: auto;
}

.dialog-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: #080808;
  color: var(--paper);
  cursor: pointer;
}

.dialog-close svg {
  width: 19px;
}

.dialog-media {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  min-height: 430px;
}

.dialog-media figure {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  margin: 0;
  overflow: hidden;
  background: #222;
}

.dialog-media img,
.dialog-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-copy {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  padding: 56px 0 64px;
  color: var(--paper);
}

.dialog-copy p {
  max-width: 640px;
  color: #8d8a86;
  font-size: 14px;
  line-height: 1.45;
}

.dialog-copy h2 {
  margin: 18px 0 28px;
  font-size: 28px;
  font-weight: 300;
}

.dialog-copy dl {
  margin: 0;
}

.dialog-copy dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.dialog-copy dt {
  color: #777470;
}

.dialog-copy dd {
  margin: 0;
}

.dialog-nav {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dialog-nav button {
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: #090909;
  color: var(--paper);
  cursor: pointer;
}

.dialog-nav button.is-primary {
  border-color: var(--orange-bright);
  box-shadow: 0 0 0 8px rgba(236, 95, 42, 0.18);
}

.inner-page {
  background: var(--charcoal);
  color: var(--paper);
}

.page-hero {
  display: grid;
  min-height: 82svh;
  padding: 150px var(--gutter) 80px;
  align-content: end;
  background: var(--charcoal);
}

.page-hero h1 {
  max-width: 1180px;
  margin: 28px 0 0;
  font-size: 72px;
  font-weight: 300;
  line-height: 1.02;
}

.page-hero-note {
  max-width: 480px;
  margin: 38px 0 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.about-studio-image {
  height: 100svh;
  min-height: 720px;
  background: #e8e8e8;
}

.about-studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  padding: 120px var(--gutter);
  background: var(--paper);
  color: var(--ink);
}

.large-copy {
  max-width: 940px;
}

.large-copy p {
  margin: 0 0 34px;
  font-size: 36px;
  line-height: 1.15;
}

.about-services {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  padding: 110px var(--gutter);
  background: var(--charcoal);
}

.about-services h2 {
  max-width: 280px;
  margin: 18px 0 0;
  font-size: 32px;
  font-weight: 300;
}

.service-rows article {
  display: grid;
  grid-template-columns: 50px 0.9fr 1.3fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.service-rows span,
.service-rows p {
  color: var(--muted);
  font-size: 13px;
}

.service-rows h3,
.service-rows p {
  margin: 0;
  font-weight: 300;
  line-height: 1.4;
}

.service-rows h3 {
  font-size: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  min-height: 85svh;
  padding: 110px var(--gutter);
  background: var(--paper);
  color: var(--ink);
}

.contact-copy h2 {
  max-width: 460px;
  margin: 22px 0 68px;
  font-size: 58px;
  font-weight: 300;
  line-height: 1;
}

.contact-copy dl,
.contact-copy dd {
  margin: 0;
}

.contact-copy dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  max-width: 620px;
  padding: 16px 0;
  border-top: 1px solid var(--dark-line);
  font-size: 15px;
}

.contact-copy dt {
  color: #77736f;
}

.contact-form {
  align-self: center;
}

.contact-form label {
  display: block;
  margin-bottom: 32px;
}

.contact-form label span {
  display: block;
  margin-bottom: 10px;
  color: #77736f;
  font-size: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--dark-line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  resize: vertical;
}

.contact-form button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.contact-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange-bright);
  box-shadow: 0 0 0 6px rgba(236, 95, 42, 0.18);
  animation: contactPulse 1.8s ease-out infinite;
}

.form-status {
  min-height: 18px;
  color: #77736f;
  font-size: 12px;
}

.simple-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 52px 32px;
  padding: 72px var(--gutter) 34px;
  background: #171717;
  color: var(--paper);
}

.simple-footer nav {
  display: flex;
  gap: 28px;
  justify-self: end;
  font-size: 13px;
}

.simple-footer p {
  grid-column: 1 / 3;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.founders-hero,
.journal-hero {
  min-height: 72svh;
}

.founder-profile {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 88svh;
  background: var(--paper);
  color: var(--ink);
}

.founder-profile.is-reversed .founder-visual {
  grid-column: 2;
}

.founder-profile.is-reversed .founder-copy {
  grid-column: 1;
  grid-row: 1;
}

.founder-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #e4e4e4;
}

.founder-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% bottom;
  filter: grayscale(1) contrast(0.85) brightness(0.9);
}

.founder-visual span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: var(--paper);
  font-size: 11px;
}

.founder-copy {
  display: flex;
  padding: 90px 8vw;
  flex-direction: column;
  justify-content: center;
}

.founder-copy h2 {
  margin: 24px 0 46px;
  font-size: 52px;
  font-weight: 300;
}

.founder-copy > p:not(.eyebrow):not(.content-status) {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.45;
}

.content-status {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--dark-line);
  color: #77736f;
  font-size: 11px;
}

.founder-closing {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 44px;
  padding: 110px var(--gutter);
  background: var(--orange-bright);
  color: var(--white);
}

.founder-closing p {
  max-width: 960px;
  margin: 0;
  font-size: 42px;
  line-height: 1.1;
}

.founder-closing a {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  align-self: end;
  font-size: 14px;
}

.founder-closing svg {
  width: 18px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 80px 32px;
  padding: 110px var(--gutter) 150px;
  background: var(--paper);
  color: var(--ink);
}

.journal-card {
  grid-column: span 4;
}

.journal-card.is-tall {
  padding-top: 120px;
}

.journal-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.journal-card div {
  padding-top: 22px;
}

.journal-card p,
.journal-card span {
  margin: 0;
  color: #77736f;
  font-size: 11px;
}

.journal-card h2 {
  margin: 14px 0 26px;
  font-size: 26px;
  font-weight: 300;
}

.journal-status {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 100px var(--gutter);
  background: var(--charcoal);
}

.journal-status > p:last-child {
  max-width: 780px;
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 900ms var(--ease);
}

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

@keyframes apertureBreathe {
  from { transform: scale(1); }
  to { transform: scale(1.012); }
}

@keyframes arrowNudge {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

@keyframes logoTravel {
  to { transform: translateX(-50%); }
}

@keyframes contactPulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 95, 42, 0.36); }
  100% { box-shadow: 0 0 0 12px rgba(236, 95, 42, 0); }
}

@media (max-width: 1100px) {
  :root {
    --gutter: 42px;
  }

  .services-panel {
    grid-template-columns: 1fr repeat(3, 0.72fr);
  }

  .service-detail {
    gap: 54px;
  }

  .project-explorer-layout {
    grid-template-columns: 1fr 0.82fr;
  }

  .project-list-row {
    grid-template-columns: 36px 1fr 0.7fr;
  }

  .project-list-row em {
    display: none;
  }

  .page-hero h1 {
    font-size: 58px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

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

  .header-mark-button {
    width: 48px;
    height: 48px;
  }

  .header-mark-button img {
    width: 25px;
    height: 21px;
  }

  .site-menu {
    padding: 20px;
  }

  .menu-links {
    width: 100%;
  }

  .menu-links a {
    font-size: 34px;
  }

  .menu-foot {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 560px;
  }

  .hero-aperture {
    width: 150%;
    max-width: none;
    left: -25%;
  }

  .hero-greeting {
    bottom: 13%;
    font-size: 14px;
  }

  .hero-scroll {
    right: 20px;
    bottom: 20px;
  }

  .services-panel {
    display: block;
    min-height: auto;
    padding: 88px var(--gutter) 100px;
  }

  .services-heading {
    margin-bottom: 64px;
  }

  .services-heading h1 {
    max-width: none;
  }

  .service-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .service-option {
    min-height: 116px;
    padding-right: 4px;
  }

  .service-option strong {
    font-size: 12px;
  }

  .service-detail {
    display: flex;
    gap: 46px;
    margin-top: 64px;
    padding: 0;
    flex-direction: column-reverse;
  }

  .service-detail > p {
    font-size: 16px;
  }

  .service-media {
    width: min(76vw, 350px);
    align-self: flex-end;
  }

  .section-arrow {
    left: 20px;
    bottom: 28px;
  }

  .showreel {
    height: 62svh;
    min-height: 480px;
  }

  .media-pill {
    right: 20px;
    bottom: 20px;
  }

  .partners {
    display: block;
    min-height: 184px;
  }

  .partners-label {
    height: 54px;
    padding: 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .logo-track {
    height: 130px;
  }

  .logo-track img {
    width: 126px;
    height: 68px;
    padding: 14px;
  }

  .selected-projects {
    padding: 90px var(--gutter) 110px;
  }

  .section-heading {
    display: block;
    margin-bottom: 54px;
  }

  .section-heading h2 {
    margin-top: 18px;
    font-size: 34px;
  }

  .project-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 56px;
  }

  .project-card,
  .project-card-1,
  .project-card-2,
  .project-card-3,
  .project-card-4,
  .project-card-5,
  .project-card-6 {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    padding-bottom: 28px;
  }

  .project-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .project-card:nth-child(even) {
    width: 84%;
    margin-left: auto;
  }

  .project-explorer {
    padding: 86px var(--gutter) 78px;
  }

  .project-explorer-head {
    display: block;
  }

  .project-explorer h2 {
    font-size: 46px;
  }

  .project-filters {
    margin-top: 36px;
    overflow-x: auto;
  }

  .project-explorer-layout {
    display: block;
    height: auto;
  }

  .project-map {
    height: 54svh;
    min-height: 420px;
  }

  .project-list {
    max-height: 520px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .project-list-row {
    grid-template-columns: 32px 1fr auto;
    min-height: 76px;
    padding: 18px 0;
  }

  .studio-cta {
    height: 78svh;
    min-height: 560px;
  }

  .studio-cta img {
    object-position: 40% bottom;
  }

  .site-footer {
    height: 78svh;
    min-height: 600px;
  }

  .footer-inner {
    display: flex;
    padding: 70px 20px 26px;
    flex-direction: column;
    justify-content: flex-end;
  }

  .footer-logo {
    width: 110px;
    margin: auto;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: 100%;
    margin: 0 0 42px;
  }

  .footer-base {
    width: 100%;
  }

  .dialog-close {
    top: 12px;
    right: 12px;
  }

  .project-dialog-panel {
    display: block;
    padding: 74px 14px 100px;
  }

  .dialog-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-height: 0;
  }

  .dialog-copy {
    display: block;
    padding: 44px 4px 64px;
  }

  .dialog-copy dl {
    margin-top: 44px;
  }

  .dialog-copy dl div {
    grid-template-columns: 110px 1fr;
  }

  .dialog-nav {
    right: 14px;
    bottom: 14px;
  }

  .page-hero {
    min-height: 76svh;
    padding: 130px var(--gutter) 56px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .page-hero-note {
    margin: 34px 0 0;
  }

  .about-studio-image {
    height: 76svh;
    min-height: 560px;
  }

  .about-studio-image img {
    object-position: 39% bottom;
  }

  .content-grid,
  .about-services,
  .contact-section,
  .journal-status {
    display: block;
    padding: 82px var(--gutter);
  }

  .large-copy {
    margin-top: 44px;
  }

  .large-copy p {
    font-size: 28px;
  }

  .about-services header {
    margin-bottom: 54px;
  }

  .service-rows article {
    grid-template-columns: 36px 1fr;
  }

  .service-rows article p {
    grid-column: 2;
  }

  .contact-copy h2 {
    font-size: 44px;
  }

  .contact-copy dl div {
    grid-template-columns: 76px 1fr;
  }

  .contact-form {
    margin-top: 70px;
  }

  .simple-footer {
    display: block;
    padding: 60px 20px 28px;
  }

  .simple-footer nav {
    margin-top: 38px;
    justify-content: space-between;
  }

  .simple-footer p {
    margin-top: 52px;
  }

  .founder-profile,
  .founder-profile.is-reversed {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .founder-profile.is-reversed .founder-visual,
  .founder-profile.is-reversed .founder-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .founder-visual {
    min-height: 570px;
  }

  .founder-copy {
    padding: 70px 20px 90px;
  }

  .founder-copy h2 {
    font-size: 42px;
  }

  .founder-closing {
    display: block;
    padding: 80px 20px;
  }

  .founder-closing p {
    font-size: 32px;
  }

  .founder-closing a {
    margin-top: 48px;
    justify-self: auto;
  }

  .journal-grid {
    display: block;
    padding: 80px 20px 110px;
  }

  .journal-card,
  .journal-card.is-tall {
    margin-bottom: 70px;
    padding-top: 0;
  }

  .journal-status > p:last-child {
    margin-top: 34px;
    font-size: 26px;
  }
}

@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;
  }
}
