:root {
  color-scheme:dark;
  --bg:#111211;
  --ivory:#f1ebdd;
  --orange:#ff8966;
  --muted:#b5afa3;
  --line:#383936;
  --space:clamp(24px,5vw,72px);
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--ivory);
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:24px;
}
body {
  margin:0;
  line-height:1.6;
}
a {
  color:inherit;
  text-decoration:none;
}
button {
  font:inherit;
  cursor:pointer;
  color:inherit;
}
img {
  display:block;
  width:100%;
  height:auto;
}
figure,h1,h2,h3,p {
  margin:0;
}
a,button {
  -webkit-tap-highlight-color:transparent;
}
a:focus-visible,button:focus-visible,[tabindex]:focus-visible {
  outline:3px solid var(--orange);
  outline-offset:5px;
}
::selection {
  background:var(--orange);
  color:var(--bg);
}
.wrap {
  width:min(1280px,calc(100% - var(--space)*2));
  margin-inline:auto;
}
.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  padding:12px;
  background:var(--ivory);
  color:var(--bg);
  z-index:20;
}
.skip-link:focus {
  top:10px;
}
.site-header {
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  min-height:104px;
  border-bottom:1px solid var(--line);
}
.brand {
  font-size:23px;
  font-weight:700;
  letter-spacing:-.8px;
}
.brand span {
  color:var(--orange);
}
nav {
  display:flex;
  gap:32px;
  font-size:15px;
}
nav a:hover,.footer a:hover {
  color:var(--orange);
}
.home-hero {
  padding:90px 0 82px;
}
.home-hero h1 {
  font-size:clamp(48px,9vw,128px);
  line-height:1.03;
  font-weight:500;
  letter-spacing:-.045em;
}
.home-hero p {
  font-size:clamp(30px,4.5vw,64px);
  color:var(--orange);
  letter-spacing:-.025em;
  margin-top:10px;
}
.section-heading {
  display:flex;
  justify-content:space-between;
  border-top:1px solid var(--line);
  padding:22px 0 34px;
}
.section-heading h2,.eyebrow {
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:.11em;
  line-height:1.6;
  font-weight:600;
}
.section-heading span,.eyebrow {
  color:var(--orange);
}
.project-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px 32px;
}
.project-card {
  min-width:0;
}
.cover {
  aspect-ratio:16/10;
  overflow:hidden;
  position:relative;
  background:#242521;
}
.cover img {
  height:100%;
  object-fit:cover;
  transition:transform .35s;
}
.project-card a:hover .cover img {
  transform:scale(1.025);
}
.card-arrow {
  position:absolute;
  right:16px;
  bottom:16px;
  background:var(--bg);
  border:1px solid var(--line);
  color:var(--ivory);
  border-radius:50%;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  font-size:22px;
}
.project-meta {
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding-top:18px;
}
.project-meta p {
  font-size:14px;
  color:var(--muted);
  margin-bottom:4px;
}
.project-meta h3 {
  font-size:clamp(22px,2.3vw,30px);
  font-weight:500;
  line-height:1.3;
}
.project-meta>span {
  color:var(--orange);
  font-size:14px;
}
.back-link {
  display:inline-block;
  margin-top:40px;
  color:var(--muted);
  font-size:14px;
}
.back-link:hover {
  color:var(--orange);
}
.project-header {
  padding:54px 0 64px;
}
.project-header h1 {
  font-size:clamp(40px,6.2vw,82px);
  line-height:1.08;
  letter-spacing:-.035em;
  max-width:1050px;
  margin:24px 0 28px;
  text-wrap:balance;
}
.project-intro {
  font-size:clamp(18px,2vw,23px);
  line-height:1.65;
  max-width:860px;
  color:var(--muted);
}
.project-body {
  display:grid;
  gap:64px;
}
.media {
  min-width:0;
}
.media h3 {
  font-size:19px;
  font-weight:500;
  margin-bottom:18px;
}
.image-link {
  display:block;
  position:relative;
  background:#20211f;
}
.image-link .zoom {
  position:absolute;
  bottom:12px;
  right:12px;
  background:#111211e6;
  border:1px solid var(--line);
  padding:7px 13px;
  font-size:13px;
  opacity:0;
  transition:opacity .2s;
}
.image-link:hover .zoom,.image-link:focus-visible .zoom {
  opacity:1;
}
.image.page .image-link {
  max-height:620px;
  overflow:hidden;
}
.image.page img {
  object-position:top;
}
.image.portrait {
  max-width:660px;
  margin-inline:auto;
}
.media-grid {
  display:grid;
  gap:32px;
  align-items:start;
}
.columns-2 {
  grid-template-columns:1fr 1fr;
}
.columns-3 {
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.block-group>h2 {
  margin-bottom:26px;
}
.media figcaption {
  color:var(--muted);
  font-size:14px;
  margin-top:14px;
  line-height:1.6;
}
.video-stage {
  position:relative;
  aspect-ratio:16/9;
  background:#222;
}
.video.portrait {
  width:100%;
  max-width:360px;
  margin-inline:auto;
}
.video.portrait .video-stage {
  aspect-ratio:9/16;
}
.video-trigger {
  position:absolute;
  inset:0;
  overflow:hidden;
  display:block;
}
.video-trigger>img {
  height:100%;
  object-fit:cover;
}
.video-trigger:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(transparent 35%,#0009);
}
.play {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:1;
  width:70px;
  height:70px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--orange);
  color:var(--bg);
  font-size:24px;
  padding-left:4px;
}
.video-name {
  position:absolute;
  bottom:22px;
  left:22px;
  right:22px;
  z-index:1;
  font-size:18px;
  font-weight:600;
}
.video-stage iframe {
  width:100%;
  height:100%;
  border:0;
}
.video figcaption {
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.video figcaption a {
  color:var(--orange);
}
.slides {
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:thin;
  scrollbar-color:var(--orange) #222;
}
.slide {
  flex:0 0 100%;
  min-width:0;
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
.carousel-controls {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:16px;
  gap:12px;
}
.carousel-controls button {
  width:46px;
  height:44px;
  background:transparent;
  border:1px solid var(--line);
  border-radius:50%;
  font-size:20px;
}
.carousel-controls button:hover:enabled {
  background:var(--orange);
  color:var(--bg);
}
.carousel-controls button:disabled {
  opacity:.3;
  cursor:default;
}
.slide-count {
  font-size:14px;
  color:var(--muted);
}
.text-block h2 {
  font-size:clamp(28px,3vw,40px);
  font-weight:500;
  line-height:1.2;
  margin-bottom:20px;
}
.text-block p {
  max-width:850px;
  font-size:20px;
  color:var(--muted);
}
.credits {
  margin-top:72px;
  border-top:1px solid var(--line);
  padding-top:32px;
}
.credits dl {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
  margin:28px 0 0;
}
.credits dt {
  font-size:14px;
  color:var(--muted);
  margin-bottom:6px;
}
.credits dd {
  margin:0;
  font-size:17px;
}
.next-project {
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:center;
  border-top:1px solid var(--line);
  margin-top:56px;
  padding:30px 0;
}
.next-project span {
  color:var(--muted);
  font-size:14px;
}
.next-project strong {
  font-weight:500;
  font-size:clamp(22px,3vw,36px);
}
.next-project:hover {
  color:var(--orange);
}
.footer {
  border-top:1px solid var(--line);
  margin-top:100px;
  padding:44px 0 28px;
}
.footer>p {
  font-size:clamp(28px,4vw,44px);
  line-height:1.2;
  margin-bottom:26px;
}
.footer>div {
  display:flex;
  flex-wrap:wrap;
  gap:20px 38px;
  font-size:17px;
  overflow-wrap:anywhere;
}
.footer>span {
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:52px;
}
.about {
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:72px;
  border-top:1px solid var(--line);
  margin-top:100px;
  padding:44px 0 20px;
  align-items:start;
}
.portrait {
  aspect-ratio:4/5;
  overflow:hidden;
}
.portrait img {
  height:100%;
  object-fit:cover;
  object-position:52% center;
}
.about h1, .about h2 {
  font-size:clamp(36px,4vw,56px);
  line-height:1.15;
  letter-spacing:-.03em;
  margin:20px 0 28px;
}
.about p:not(.eyebrow) {
  font-size:18px;
  color:var(--muted);
  margin-bottom:22px;
}
.modal-open {
  overflow:hidden;
}
.lightbox {
  border:1px solid var(--line);
  background:var(--bg);
  color:var(--ivory);
  padding:64px 20px 20px;
  width:min(1200px,96vw);
  max-height:94vh;
}
.lightbox::backdrop {
  background:#000d;
}
.lightbox-close {
  position:fixed;
  top:4vh;
  right:5vw;
  border:1px solid var(--muted);
  background:var(--bg);
  padding:10px 20px;
  z-index:2;
}
.lightbox img {
  height:auto;
  width:100%;
  object-fit:contain;
}
.lightbox p {
  margin-top:20px;
  color:var(--muted);
}
@media(max-width:760px) {
  .site-header {
    min-height:90px;
    gap:16px;
  }
  .brand {
    font-size:19px;
  }
  nav {
    gap:18px;
    font-size:14px;
  }
  .home-hero {
    padding:62px 0;
  }
  .project-grid {
    gap:38px 20px;
  }
  .cover {
    aspect-ratio:4/3;
  }
  .project-meta h3 {
    font-size:22px;
  }
  .project-header {
    padding:36px 0 40px;
  }
  .project-body {
    gap:40px;
  }
  .media-grid {
    gap:26px;
  }
  .columns-3 {
    grid-template-columns:1fr;
  }
  .columns-3>.media {
    max-width:520px;
    width:100%;
    margin-inline:auto;
  }
  .credits dl {
    grid-template-columns:1fr 1fr;
  }
  .about {
    gap:30px;
    grid-template-columns:1fr;
    margin-top:70px;
    padding-top:28px;
  }
  .portrait {
    max-width:440px;
    width:100%;
  }
  .footer {
    margin-top:70px;
  }
  .image-link .zoom {
    opacity:1;
  }
}
@media(max-width:520px) {
  .site-header {
    flex-wrap:wrap;
    align-content:center;
    gap:10px;
    padding-block:16px;
  }
  .brand {
    width:100%;
  }
  nav {
    width:100%;
    justify-content:space-between;
  }
  .project-grid,.columns-2 {
    grid-template-columns:1fr;
  }
  .project-header h1 {
    font-size:40px;
  }
  .credits dl {
    grid-template-columns:1fr;
  }
  .next-project {
    align-items:start;
    flex-direction:column;
    gap:10px;
  }
  .home-hero h1 {
    font-size:clamp(40px,11vw,60px);
  }
  .project-meta h3 {
    font-size:25px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    transition:none!important;
    animation:none!important;
  }
}
/* Preserve full campaign concepts in home thumbnails. */
.cover img {
  object-fit:contain;
}
.columns-1 {
  grid-template-columns:minmax(0,760px);
  justify-content:center;
}
