:root {
  --ink: #0b0b0c;
  --paper: #f5f5f2;
  --white: #ffffff;
  --muted: #6d6d6a;
  --blue: #1748d1;
  --line: rgba(11, 11, 12, 0.18);
  --shell: min(1240px, calc(100% - clamp(36px, 7vw, 112px)));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 24px; }

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

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

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; max-width: 100%; height: auto; }

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  margin: 0 auto;
  padding: 28px 0;
  color: var(--white);
  animation: header-enter 680ms cubic-bezier(.22, 1, .36, 1) both;
}

.monogram {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms 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: 16px 26px;
  background: var(--white);
  color: var(--ink);
  transition: background 180ms ease, color 180ms ease;
}
.nav-cta:hover { background: var(--blue); color: var(--white); }

.menu-button { display: none; }

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, min(940px, 100svh));
  overflow: hidden;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 140px max(56px, calc((100vw - 1240px) / 2)) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.07) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 18%, rgba(255,255,255,0.08), transparent 25%),
    linear-gradient(125deg, #171719 0%, #070708 58%, #111114 100%);
  background-size: 7px 7px, auto, auto;
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,0.08) 50%, transparent 50.1%);
}

.hero-portrait {
  position: relative;
  z-index: 1;
  align-self: end;
  height: 100%;
  min-height: 0;
  animation: portrait-enter 880ms cubic-bezier(.22, 1, .36, 1) 100ms both;
}

.hero-portrait::before {
  position: absolute;
  z-index: 0;
  inset: 8% 2% 0;
  content: "";
  background: radial-gradient(circle at 55% 58%, rgba(255,255,255,.13), transparent 61%);
}

.hero-portrait img {
  position: absolute;
  z-index: 2;
  right: 1%;
  bottom: 0;
  width: min(105%, 790px);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.05) brightness(1.08);
}

.hero-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -8%;
  font-family: "Manrope", sans-serif;
  font-size: clamp(13rem, 25vw, 27rem);
  font-weight: 700;
  line-height: 0.75;
  letter-spacing: -0.14em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.16);
  transform: translateY(-50%);
  user-select: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
  padding-left: 72px;
}

.hero-copy > * {
  animation: hero-copy-enter 680ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero-copy > :nth-child(1) { animation-delay: 220ms; }
.hero-copy > :nth-child(2) { animation-delay: 300ms; }
.hero-copy > :nth-child(3) { animation-delay: 380ms; }
.hero-copy > :nth-child(4) { animation-delay: 460ms; }

.eyebrow {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow { color: rgba(255,255,255,0.58); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }

h1 {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: clamp(3.6rem, 5vw, 5.3rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(4px, 4px); }

.section-shell { width: var(--shell); margin: 0 auto; }

.work { padding: 132px 0 150px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.section-heading h2,
.about h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.4vw, 5rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.section-intro { max-width: 390px; margin-bottom: 3px; color: var(--muted); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 76px 44px;
}

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

.project-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #ddd;
}

.project-card--wide .project-visual { aspect-ratio: 1.82 / 1; }
.project-card:not(.project-card--wide) .project-visual { aspect-ratio: 1.42 / 1; }
.project-visual img { height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(.22,.61,.36,1), filter 300ms ease; }
.project-visual img[data-featured-cover] { transition: opacity 240ms ease, transform 600ms cubic-bezier(.22,.61,.36,1), filter 300ms ease; }
.project-visual img[data-featured-cover].is-changing { opacity: 0; }
.project-visual--portrait-gallery { background: #e9e7e3; }
.project-card--portrait .project-visual { aspect-ratio: 4 / 5 !important; }
.project-visual--portrait-gallery img { width: 100%; max-width: 100%; margin: 0; object-fit: cover; }
.project-card--brochure .project-visual { aspect-ratio: 1.414 / 1; }
.project-visual--brochure-gallery { background: #eeeae5; }
.project-visual--brochure-gallery img { object-fit: contain; }
.project-card--wide .project-visual--photo-gallery { aspect-ratio: 3 / 2; }
.project-visual--photo-gallery { background: #e8e6e2; }
.project-visual--photo-gallery img { object-fit: cover; }
.project-visual--adaptive-gallery { background: #10152c; }
.project-visual--adaptive-gallery img { object-fit: contain; }
.project-gallery-count {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 12px;
  background: rgba(17,17,18,.88);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
}
.project-visual:hover img,
.project-visual:focus-visible img { transform: scale(1.025); filter: saturate(1.08); }

.project-open {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 13px 17px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
}
.project-visual:hover .project-open,
.project-visual:focus-visible .project-open { transform: translateY(0); opacity: 1; }

.project-visual,
.photo-stage { touch-action: pan-y; }

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}
.project-meta h3 { margin-bottom: 4px; font-size: 25px; line-height: 1.3; }
.project-meta p { margin-bottom: 0; color: var(--muted); font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.project-meta > span { font-size: 14px; font-weight: 700; }

.video-showcase {
  padding-top: 140px;
  scroll-margin-top: 24px;
}

.video-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, .62fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.video-heading .eyebrow { margin-bottom: 15px; color: var(--muted); }
.video-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.4vw, 5rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.055em;
}
.video-heading > p { max-width: 440px; margin: 0 0 4px; color: var(--muted); font-size: 18px; }

.video-grid { display: grid; gap: 48px 24px; }
.video-grid--portrait { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.video-grid--landscape { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 72px; }
.video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}
.video-frame--portrait { aspect-ratio: 9 / 16; }
.video-frame--landscape { aspect-ratio: 16 / 9; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #111;
}
.video-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.62) 100%);
}
.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.22,.61,.36,1), filter 250ms ease;
}
.video-poster:hover img,
.video-poster:focus-visible img { transform: scale(1.025); filter: saturate(1.08); }
.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease, background 200ms ease;
}
.video-play span { margin-left: 4px; font-size: 19px; line-height: 1; }
.video-poster:hover .video-play,
.video-poster:focus-visible .video-play { background: var(--white); transform: translate(-50%, -50%) scale(1.08); }
.video-platform {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(11,11,12,.84);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.video-meta { padding-top: 18px; border-top: 1px solid var(--ink); }
.video-meta h3 { margin-bottom: 4px; font-size: 20px; line-height: 1.3; }
.video-meta p { margin-bottom: 0; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.photography {
  position: relative;
  padding: 132px 0 140px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.featured-photography {
  width: 100%;
  margin: 0;
}
.photography-heading {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}
.photography-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.4vw, 5rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.055em;
}
.photography-heading > p {
  max-width: 450px;
  margin: 0 0 4px;
  color: rgba(255,255,255,.62);
  font-size: 18px;
}
.photo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .7fr);
  background: #151516;
  outline: none;
}
.photo-slides {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0f0f10;
}
.photo-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 520ms ease, visibility 520ms ease, transform 750ms ease;
}
.photo-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.photo-slide img { height: 100%; object-fit: cover; }
.photo-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 38px 38px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.photo-kicker {
  margin-bottom: 18px;
  color: rgba(255,255,255,.48);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.photo-number {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
  font-family: "Manrope", sans-serif;
}
.photo-number [data-photo-current] {
  font-size: clamp(4.2rem, 6.4vw, 6.7rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.08em;
}
.photo-number span:last-child { color: rgba(255,255,255,.42); font-size: 17px; }
.photo-panel-footer { display: grid; gap: 34px; }
.photo-controls { display: flex; gap: 10px; }
.photo-control {
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  cursor: pointer;
  background: transparent;
  color: var(--white);
  font-size: 21px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.photo-control:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}
.photo-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 14px;
  font-weight: 600;
}
.photo-thumbs {
  display: grid;
  grid-template-columns: repeat(10, minmax(76px, 1fr));
  gap: 9px;
  margin-top: 14px;
}
.photo-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  background: #161617;
  opacity: .42;
  transition: opacity 180ms ease, border-color 180ms ease;
}
.photo-thumb:hover { opacity: .78; }
.photo-thumb.is-active {
  border-color: var(--white);
  opacity: 1;
}
.photo-thumb img { height: 100%; object-fit: cover; }

.about { padding: 136px 0; color: var(--white); background: var(--ink); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; }
.about-copy { padding-top: 50px; }
.about-copy p { max-width: 590px; margin-bottom: 24px; color: rgba(255,255,255,.7); font-size: 19px; }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 110px;
}
.capability { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.25); }
.capability span { display: block; margin-bottom: 60px; color: rgba(255,255,255,.45); font-size: 14px; }
.capability h3 { margin-bottom: 14px; font-size: 32px; }
.capability p { max-width: 320px; margin-bottom: 0; color: rgba(255,255,255,.62); }

.experience { padding: 136px 0 34px; }
.experience-list { border-bottom: 1px solid var(--line); }
.experience-row {
  display: grid;
  grid-template-columns: .62fr 1fr 1.2fr;
  gap: 42px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.experience-date {
  padding-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.experience-role h3 { margin-bottom: 5px; font-size: 24px; line-height: 1.25; }
.experience-role p { margin-bottom: 0; color: var(--muted); }
.experience-summary { max-width: 470px; margin-bottom: 0; color: var(--muted); }

.credentials { padding: 136px 0; }
.credentials > .eyebrow { margin-bottom: 46px; }
.credential-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.credential-row:last-child { border-bottom: 1px solid var(--line); }
.credential-row p { margin: 0; font-family: "Manrope", sans-serif; font-size: clamp(1.5rem, 2.5vw, 2.45rem); line-height: 1.2; letter-spacing: -0.03em; }
.credential-row span { color: var(--muted); font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.trusted {
  padding: 118px 0 124px;
  overflow: hidden;
  background: #ededeb;
}
.trusted-inner { overflow: visible; }
.trusted-heading {
  margin-bottom: 68px;
  text-align: center;
}
.trusted-heading .eyebrow { margin-bottom: 12px; color: var(--muted); }
.trusted-heading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 4.7vw, 4.35rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.055em;
}
.logo-grid {
  display: flex;
  align-items: center;
  width: 100%;
}
.logo-card {
  position: relative;
  display: flex;
  flex: 1 1 0;
  height: 94px;
  min-width: 0;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  place-items: center;
  background: transparent;
}
.logo-card:not(:last-child)::after {
  position: absolute;
  top: 20px;
  right: 0;
  bottom: 20px;
  width: 1px;
  content: "";
  background: rgba(11, 11, 12, .22);
}
.logo-card img {
  width: 100%;
  max-width: 150px;
  height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.05);
  opacity: .68;
  transition: opacity 220ms ease;
}
.logo-card:hover img { opacity: .95; }
.logo-card:nth-child(1) img { max-width: 132px; }
.logo-card:nth-child(2) img { max-width: 148px; }
.logo-card:nth-child(3) img { max-width: 176px; }
.logo-card:nth-child(4) img { max-width: 102px; }
.logo-card:nth-child(5) img { max-width: 138px; }
.logo-card:nth-child(6) img { max-width: 104px; }

.contact { padding: 136px 0; background: var(--blue); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 100px; align-items: end; }
.contact-side { max-width: 440px; justify-self: end; }
.contact-side p { margin-bottom: 34px; font-size: 18px; color: rgba(255,255,255,.78); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 260px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-3px); }
.button--light { background: var(--white); color: var(--ink); }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 70px;
  padding: 72px max(56px, calc((100vw - 1240px) / 2));
  color: var(--white);
  background: var(--ink);
}
.site-footer h2 { margin-bottom: 8px; font-size: 26px; }
.site-footer p { margin-bottom: 0; color: rgba(255,255,255,.55); }
.site-footer nav { display: grid; align-content: start; gap: 14px; }
.site-footer nav a,
.footer-meta a { font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.footer-meta { display: grid; justify-items: end; align-content: space-between; gap: 28px; text-align: right; }

.project-dialog {
  width: min(1120px, calc(100vw - 52px));
  max-height: calc(100vh - 52px);
  overflow: auto;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}
.project-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(6px); }
.dialog-close {
  position: fixed;
  top: 40px;
  right: 42px;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0 0 4px;
  place-items: center;
  border: 0;
  cursor: pointer;
  background: var(--white);
  font-size: 30px;
  line-height: 1;
}
.dialog-media { position: relative; aspect-ratio: 1.82 / 1; background: #ddd; }
.dialog-media img { height: 100%; object-fit: cover; transition: opacity 180ms ease; }
.dialog-media img.is-changing { opacity: 0; }
.dialog-media.is-portrait-gallery { background: #151516; }
.dialog-media.is-portrait-gallery img { width: auto; max-width: 100%; margin: 0 auto; object-fit: contain; }
.dialog-media.is-contained-gallery { aspect-ratio: 1.414 / 1; background: #151516; }
.dialog-media.is-contained-gallery img { object-fit: contain; }
.dialog-media.is-adaptive-gallery { height: min(72vh, 820px); aspect-ratio: auto; background: #10152c; }
.dialog-media.is-adaptive-gallery img { width: 100%; object-fit: contain; }
.dialog-gallery-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: rgba(17,17,18,.9);
  color: var(--white);
}
.dialog-gallery-controls[hidden] { display: none; }
.dialog-gallery-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  cursor: pointer;
  background: transparent;
  color: inherit;
  font-size: 18px;
}
.dialog-gallery-controls span { min-width: 58px; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.dialog-copy { display: grid; grid-template-columns: .8fr 1.4fr; gap: 34px 70px; padding: 58px; }
.dialog-copy .eyebrow { grid-column: 1 / -1; margin: 0; color: var(--muted); }
.dialog-copy h2 { margin: 0; font-size: clamp(2.4rem, 4vw, 4.2rem); line-height: 1.03; letter-spacing: -.05em; }
.dialog-copy > p { font-size: 18px; color: var(--muted); }
.dialog-copy dl { grid-column: 2; display: grid; grid-template-columns: auto 1fr; gap: 8px 22px; margin: 0; }
.dialog-copy dt { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dialog-copy dd { margin: 0; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 720ms ease, transform 720ms cubic-bezier(.22, 1, .36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes header-enter {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: none; }
}

@keyframes portrait-enter {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to { opacity: 1; transform: none; }
}

@keyframes hero-copy-enter {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes nav-link-enter {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: none; }
}

.work,
.photography,
.about,
.experience,
.credentials,
.trusted,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-header { padding-inline: 8px; }
  .site-nav { gap: 24px; }
  .hero {
    min-height: max(720px, 100svh);
    grid-template-columns: .95fr 1.05fr;
    padding-inline: 48px;
  }
  .hero-copy { padding-left: 36px; }
  .project-grid { column-gap: 30px; row-gap: 64px; }
  .about-grid { gap: 56px; }
  .experience-row { grid-template-columns: .62fr .95fr 1.25fr; gap: 28px; }
  .contact-grid { gap: 56px; }
  .site-footer { gap: 40px; padding-inline: 48px; }
}

@media (hover: none), (pointer: coarse) {
  .project-open { opacity: 1; transform: none; }
  .project-visual:hover img { transform: none; filter: none; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 720px); }
  .site-header { padding: 20px 0; }
  .monogram { width: 48px; height: 48px; }
  .menu-button {
    position: relative;
    z-index: 25;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
  }
  .menu-button span { display: block; width: 20px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 30px;
    background: var(--ink);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 280ms ease, visibility 280ms;
  }
  .site-nav.is-open { transform: translateY(0); visibility: visible; }
  .site-nav.is-open a { animation: nav-link-enter 420ms cubic-bezier(.22, 1, .36, 1) both; }
  .site-nav.is-open a:nth-child(2) { animation-delay: 45ms; }
  .site-nav.is-open a:nth-child(3) { animation-delay: 90ms; }
  .site-nav.is-open a:nth-child(4) { animation-delay: 135ms; }
  .site-nav.is-open a:nth-child(5) { animation-delay: 180ms; }
  .site-nav a { font-size: 24px; }
  .nav-cta { padding: 14px 25px; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: start;
    align-items: stretch;
    padding: 92px 20px 48px;
  }
  .hero::after { display: none; }
  .hero-portrait {
    position: relative;
    inset: auto;
    grid-row: 1;
    width: min(100%, 520px);
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    justify-self: center;
    overflow: hidden;
    opacity: 1;
    transform: none;
    isolation: isolate;
  }
  .hero-portrait::after {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    height: 16%;
    content: "";
    background: linear-gradient(180deg, transparent, #09090a 100%);
  }
  .hero-portrait::before {
    inset: 2% 6% -10%;
    background: radial-gradient(circle at 50% 43%, rgba(255,255,255,.2), transparent 58%);
  }
  .hero-portrait img {
    right: auto;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: contrast(1.04) brightness(1.2);
    transform: translateX(-50%);
  }
  .hero-mark {
    top: 48%;
    left: 50%;
    font-size: min(54vw, 15rem);
    opacity: .42;
    transform: translate(-52%, -50%);
  }
  .hero-copy {
    grid-row: 2;
    width: min(100%, 650px);
    max-width: 650px;
    margin: 0 auto;
    padding: 18px 0 0;
  }
  .hero-copy .eyebrow { max-width: 42ch; margin-bottom: 14px; line-height: 1.65; }
  h1 { margin-bottom: 24px; font-size: clamp(3rem, 11vw, 4.6rem); }
  .hero-copy > p:not(.eyebrow) { max-width: 590px; margin-bottom: 24px; font-size: 18px; line-height: 1.58; }
  .work { padding: 96px 0 104px; }
  .section-heading { display: grid; gap: 22px; margin-bottom: 42px; }
  .section-intro { max-width: 560px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card--wide { grid-column: auto; }
  .project-card--wide .project-visual { aspect-ratio: 16 / 9; }
  .project-card:not(.project-card--wide) .project-visual { aspect-ratio: 1.42 / 1; }
  .project-card--brochure .project-visual { aspect-ratio: 1.414 / 1; }
  .project-card--wide .project-visual--photo-gallery { aspect-ratio: 3 / 2; }
  .project-card--portrait .project-visual { aspect-ratio: 4 / 5; }
  .project-card--square .project-visual { aspect-ratio: 1 / 1; }
  .project-grid { gap: 60px; }
  .project-meta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; padding-top: 18px; }
  .project-meta h3 { font-size: 22px; }
  .project-meta p { max-width: 46ch; line-height: 1.55; }
  .project-gallery-count { left: 12px; bottom: 12px; padding: 7px 10px; }
  .project-open { right: 12px; bottom: 12px; padding: 11px 14px; }
  .video-showcase { padding-top: 104px; }
  .video-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 40px; }
  .video-heading > p { max-width: 560px; }
  .video-grid--portrait { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-grid--landscape { grid-template-columns: 1fr; margin-top: 60px; }
  .featured-photography { margin: 0; padding: 96px 0 104px; }
  .photography-heading { grid-template-columns: 1fr; gap: 24px; }
  .photo-stage { grid-template-columns: 1fr; }
  .photo-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: end;
    padding: 28px 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 0;
  }
  .photo-panel-footer { justify-items: end; gap: 20px; }
  .photo-source { min-width: 260px; }
  .photo-thumbs {
    grid-template-columns: repeat(10, 92px);
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
  }
  .photo-thumbs::-webkit-scrollbar { display: none; }
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-copy { padding-top: 0; }
  .capability-grid { grid-template-columns: 1fr; gap: 46px; }
  .capability span { margin-bottom: 28px; }
  .experience-row { grid-template-columns: .7fr 1.3fr; }
  .experience-summary { grid-column: 2; }
  .trusted { padding: 104px 0 110px; }
  .trusted-heading { margin-bottom: 56px; }
  .trusted-inner { width: 100%; }
  .logo-grid {
    overflow-x: auto;
    padding: 0 24px 12px;
    scroll-padding-inline: 24px;
    scrollbar-width: none;
  }
  .logo-grid::-webkit-scrollbar { display: none; }
  .logo-card { flex: 0 0 180px; padding-inline: 22px; }
  .contact-side { justify-self: start; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-inline: 24px; }
  .footer-meta { grid-column: 1 / -1; justify-items: start; text-align: left; }
  .project-dialog { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); }
  .dialog-close { top: max(18px, env(safe-area-inset-top)); right: 18px; width: 44px; height: 44px; }
  .dialog-gallery-controls { right: 12px; bottom: 12px; }
  .dialog-copy { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; }
  .dialog-copy h2 { font-size: clamp(2.35rem, 9vw, 3.4rem); }
  .dialog-copy > p { font-size: 16px; }
  .dialog-copy dl { grid-column: 1; }
  .dialog-media.is-adaptive-gallery { height: min(64dvh, 680px); }
  .work,
  .photography,
  .about,
  .experience,
  .credentials,
  .trusted,
  .contact {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .site-header { width: calc(100% - 32px); padding-top: 16px; }
  .hero { grid-template-rows: auto auto; padding: 82px 16px 40px; }
  .hero-portrait { width: min(100%, 440px); min-height: 0; }
  .hero-portrait::after { height: 14%; }
  .hero-portrait img { bottom: 0; height: 100%; }
  .hero-copy { padding: 10px 4px 0; }
  .hero-copy .eyebrow { margin-bottom: 10px; font-size: 12px; letter-spacing: .13em; }
  h1 { margin-bottom: 20px; font-size: clamp(2.8rem, 12vw, 3.55rem); line-height: 1; }
  .hero-copy > p:not(.eyebrow) { margin-bottom: 22px; font-size: 16px; line-height: 1.55; }
  .text-link { min-height: 44px; align-items: center; }
  .work { padding: 76px 0 84px; }
  .photography, .about, .credentials, .contact { padding-block: 80px; }
  .featured-photography { margin: 0; padding: 76px 0 84px; }
  .trusted { padding: 86px 0 82px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .about h2, .contact h2 { font-size: clamp(2.55rem, 12vw, 3rem); }
  .project-grid { gap: 48px; }
  .project-meta h3 { font-size: 21px; }
  .project-meta p { font-size: 12px; letter-spacing: .065em; }
  .project-open { right: 12px; bottom: 12px; opacity: 1; transform: none; }
  .video-showcase { padding-top: 82px; }
  .video-heading { margin-bottom: 34px; padding-top: 24px; }
  .video-heading h2 { font-size: clamp(2.55rem, 12vw, 3rem); }
  .video-heading > p { font-size: 16px; }
  .video-grid--portrait { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 12px; }
  .video-grid--landscape { gap: 46px; margin-top: 54px; }
  .video-grid--portrait .video-play { width: 50px; height: 50px; }
  .video-grid--portrait .video-platform { right: 8px; bottom: 8px; padding: 6px 8px; font-size: 10px; }
  .video-grid--portrait .video-meta { padding-top: 13px; }
  .video-grid--portrait .video-meta h3 { font-size: 16px; }
  .video-grid--portrait .video-meta p { font-size: 11px; }
  .video-grid--landscape .video-play { width: 58px; height: 58px; }
  .video-meta h3 { font-size: 19px; }
  .photography-heading { margin-bottom: 34px; }
  .photography-heading h2 { font-size: clamp(2.55rem, 12vw, 3rem); }
  .photography-heading > p { font-size: 16px; }
  .photo-slides { aspect-ratio: 1 / 1; }
  .photo-panel { grid-template-columns: 1fr; align-items: start; padding: 24px 20px; }
  .photo-panel-footer { width: 100%; justify-items: start; }
  .photo-source { width: 100%; min-width: 0; }
  .photo-thumbs { grid-template-columns: repeat(10, 76px); }
  .about-copy p { font-size: 17px; }
  .credential-row { grid-template-columns: 1fr; gap: 8px; }
  .experience { padding-top: 80px; }
  .experience-row { grid-template-columns: 1fr; gap: 14px; }
  .experience-summary { grid-column: 1; }
  .trusted-heading { margin-bottom: 44px; padding-inline: 18px; }
  .trusted-heading h2 { font-size: 2.85rem; }
  .logo-grid { padding-inline: 18px; scroll-padding-inline: 18px; }
  .logo-card { flex-basis: 164px; height: 86px; padding-inline: 19px; }
  .button { width: 100%; min-width: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 44px; }
  .footer-meta { grid-column: auto; }
  .project-dialog { width: calc(100vw - 12px); max-height: calc(100dvh - 12px); }
  .dialog-close { top: max(12px, env(safe-area-inset-top)); right: 12px; }
  .dialog-media { aspect-ratio: 1.3 / 1; }
  .dialog-media.is-portrait-gallery { aspect-ratio: 4 / 5; }
  .dialog-media.is-contained-gallery { aspect-ratio: 1.414 / 1; }
  .dialog-media.is-adaptive-gallery { height: auto; max-height: min(72dvh, 620px); aspect-ratio: var(--media-ratio, 4 / 5); }
  .dialog-gallery-controls { gap: 8px; padding: 6px; }
  .dialog-gallery-controls button { width: 40px; height: 40px; }
  .dialog-copy { padding: 30px 20px max(32px, env(safe-area-inset-bottom)); }
  .dialog-copy dl { grid-template-columns: 1fr; gap: 3px; }
  .dialog-copy dd { margin-bottom: 10px; }
  .project-dialog::backdrop { backdrop-filter: none; }
}

@media (max-width: 380px) {
  :root { --shell: calc(100% - 24px); }
  .site-header { width: calc(100% - 24px); }
  .hero { grid-template-rows: auto auto; padding: 80px 12px 36px; }
  .hero-portrait { min-height: 0; }
  .hero-portrait img { height: 100%; }
  .hero-copy { padding-inline: 2px; }
  h1 { font-size: 2.65rem; }
  .section-heading h2,
  .about h2,
  .contact h2,
  .photography-heading h2,
  .trusted-heading h2 { font-size: 2.45rem; }
  .project-meta { gap: 16px; }
  .project-meta h3 { font-size: 19px; }
  .photo-control { width: 48px; height: 48px; }
  .dialog-copy { padding: 32px 20px; }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 620px) {
  .hero {
    min-height: 100svh;
    grid-template-columns: minmax(210px, .78fr) minmax(0, 1.22fr);
    grid-template-rows: 1fr;
    gap: 20px;
    align-items: end;
    padding: 76px 28px 28px;
  }
  .hero-portrait { grid-column: 1; grid-row: 1; width: 100%; min-height: 0; height: 100%; aspect-ratio: auto; }
  .hero-portrait img { width: 100%; height: 100%; object-fit: contain; }
  .hero-copy { grid-column: 2; grid-row: 1; align-self: center; padding: 0; }
  .hero-copy .eyebrow { margin-bottom: 8px; font-size: 11px; }
  .hero-copy h1 { margin-bottom: 14px; font-size: clamp(2.2rem, 7vw, 3.3rem); }
  .hero-copy > p:not(.eyebrow) { margin-bottom: 14px; font-size: 14px; line-height: 1.45; }
  .text-link { min-height: 38px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid #ffcb47; outline-offset: 4px; }
