:root {
  --pink: #f7caca;
  --blue: #f7caca;
  --red: #141414;
  --ink: #141414;
  --cream: #fff8f3;
  --cream-2: #f7caca;
  --muted: rgba(20, 20, 20, .68);
  --line: rgba(20, 20, 20, .22);
  --white-line: rgba(255, 243, 232, .34);
  --sans: "Manrope", sans-serif;
  --serif: "Louize Display", "Cormorant Garamond", "Instrument Serif", Georgia, serif;
  --body-serif: "Adobe Garamond Pro", "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--cream); font-family: var(--sans); font-size: 14px; }
img, video, picture { display: block; width: 100%; height: 100%; }
img, video { object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p { line-height: 1.55; }
h1, h2, h3, p { margin-top: 0; }
em { color: var(--red); font-family: var(--serif); font-weight: 400; }

.site-header {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 3vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 243, 232, .86);
  backdrop-filter: blur(18px);
}

.wordmark {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: none;
}

.site-nav { display: flex; align-items: flex-start; gap: 30px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a, .nav-trigger { padding-bottom: 5px; border-bottom: 1px solid transparent; }
.site-nav a:hover, .nav-item:hover .nav-trigger, .nav-item:focus-within .nav-trigger { color: var(--red); border-color: currentColor; }
.nav-item { position: relative; padding-bottom: 18px; margin-bottom: -18px; }
.nav-trigger { display: inline-block; }
.work-dropdown {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 210px;
  display: grid;
  gap: 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: 0 18px 45px rgba(20, 20, 20, .12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s ease;
}
.nav-item:hover .work-dropdown, .nav-item:focus-within .work-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.work-dropdown a { padding: 12px 10px; border-bottom: 1px solid var(--line); }
.work-dropdown a:last-child { border-bottom: 0; }
.menu-toggle { display: none; background: transparent; border: 0; text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .08em; }

.hero {
  min-height: calc(100vh - 70px);
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5vh 3vw 4vw;
  background: var(--pink);
}
.hero-kicker, .hero-bottom { display: flex; justify-content: space-between; gap: 30px; }
.hero-kicker { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-main {
  display: grid;
  grid-template-columns: max-content minmax(250px, 360px);
  gap: clamp(42px, 6vw, 110px);
  align-items: center;
  justify-content: start;
  margin: 7vh 0;
}
.hero h1 {
  max-width: none;
  margin: 0;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(58px, 7.25vw, 116px);
  line-height: .86;
  letter-spacing: -.055em;
  font-weight: 500;
}
.hero-line { display: block; white-space: nowrap; }
.hero h1 em { color: inherit; font-size: .98em; }
.hero-stack {
  position: relative;
  justify-self: start;
  width: clamp(350px, 31vw, 507px);
  aspect-ratio: 4 / 5;
}
.stack-photo {
  position: absolute;
  inset: 7% auto auto 14%;
  width: 72%;
  height: 80%;
  object-fit: cover;
  border: 0;
  background: var(--cream);
  box-shadow: 0 24px 50px rgba(20, 20, 20, .16);
  opacity: 0;
  transform: translate(var(--x), var(--y)) rotate(var(--r));
  animation-duration: 7.6s;
  animation-timing-function: steps(1, end);
  animation-iteration-count: infinite;
}
.stack-photo-1 { --x: -13px; --y: -10px; --r: -5deg; z-index: 1; animation-name: stackPhoto1; }
.stack-photo-2 { --x: -8px; --y: -6px; --r: 4deg; z-index: 2; animation-name: stackPhoto2; }
.stack-photo-3 { --x: -3px; --y: -2px; --r: -3deg; z-index: 3; animation-name: stackPhoto3; }
.stack-photo-4 { --x: 2px; --y: 2px; --r: 3deg; z-index: 4; animation-name: stackPhoto4; }
.stack-photo-5 { --x: 7px; --y: 6px; --r: -4deg; z-index: 5; animation-name: stackPhoto5; }
.stack-photo-6 { --x: 12px; --y: 10px; --r: 5deg; z-index: 6; animation-name: stackPhoto6; }
.stack-photo-7 { --x: 17px; --y: 14px; --r: -2deg; z-index: 7; animation-name: stackPhoto7; }
@keyframes stackPhoto1 { 0%, 7% { opacity: 0; } 8%, 92% { opacity: 1; } 93%, 100% { opacity: 0; } }
@keyframes stackPhoto2 { 0%, 13% { opacity: 0; } 14%, 86% { opacity: 1; } 87%, 100% { opacity: 0; } }
@keyframes stackPhoto3 { 0%, 18% { opacity: 0; } 19%, 81% { opacity: 1; } 82%, 100% { opacity: 0; } }
@keyframes stackPhoto4 { 0%, 23% { opacity: 0; } 24%, 76% { opacity: 1; } 77%, 100% { opacity: 0; } }
@keyframes stackPhoto5 { 0%, 28% { opacity: 0; } 29%, 71% { opacity: 1; } 72%, 100% { opacity: 0; } }
@keyframes stackPhoto6 { 0%, 33% { opacity: 0; } 34%, 66% { opacity: 1; } 67%, 100% { opacity: 0; } }
@keyframes stackPhoto7 { 0%, 38% { opacity: 0; } 39%, 61% { opacity: 1; } 62%, 100% { opacity: 0; } }
.hero-bottom { align-items: flex-end; }
.hero-bottom p { max-width: 560px; margin: 0; color: rgba(20, 20, 20, .82); font-size: clamp(15px, 1.25vw, 20px); letter-spacing: -.02em; }
.button-row { display: flex; gap: 8px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  min-width: 166px;
  padding: 14px 15px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: .25s;
}
.button span,
.round-link span,
.contact-links a span:last-child,
.text-link span,
.next-project b {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  overflow: hidden;
  font-size: 0;
}
.button span:before,
.round-link span:before,
.contact-links a span:last-child:before,
.text-link span:before,
.next-project b:before {
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}
.button span:after,
.round-link span:after,
.contact-links a span:last-child:after,
.text-link span:after,
.next-project b:after {
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  width: 15px;
  height: 1.5px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: right center;
}
.button:hover, .button-dark { color: var(--cream); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: transparent; }

.featured, .services, .about-section { padding: 8vw 3vw; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: end; gap: 4vw; padding-bottom: 4vw; }
.section-heading-work { grid-template-columns: minmax(0, 2fr) minmax(190px, .75fr); align-items: start; }
.section-heading-work .eyebrow { justify-self: end; padding-top: 12px; text-align: right; }
.section-heading h2, .contact-cta h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(52px, 7.2vw, 118px); line-height: .9; letter-spacing: -.055em; font-weight: 500; }
.section-heading.compact h2 { font-size: clamp(48px, 6vw, 96px); }
.eyebrow { margin: 0; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow.light { color: rgba(255, 243, 232, .72); }

.project-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.project-card { display: block; }
.project-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--pink); border: 1px solid var(--line); }
.project-media img, .project-media video { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project-card:hover .project-media img, .project-card:hover .project-media video { transform: scale(1.025); }
.project-card-meta { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 13px 0 0; border-top: 1px solid var(--ink); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.project-card-meta span:nth-child(2) { grid-column: 1 / -1; color: var(--muted); font-weight: 700; }
.arrow { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--cream); border-radius: 999px; color: var(--cream); background: rgba(20, 20, 20, .35); font-size: 0; transition: .25s; }
.arrow:before { content: ""; position: absolute; top: 8px; right: 8px; width: 10px; height: 10px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; }
.arrow:after { content: ""; position: absolute; top: 8px; right: 8px; width: 16px; height: 1.5px; background: currentColor; transform: rotate(-45deg); transform-origin: right center; }
.project-card:hover .arrow { transform: translate(3px, -3px); color: var(--red); background: var(--cream); }

.about-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; align-items: end; background: var(--pink); }
.about-image { aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); background: var(--cream); }
.about-copy { max-width: 780px; }
.about-copy h2 { margin: 0 0 34px; color: var(--ink); font-family: var(--serif); font-size: clamp(60px, 9vw, 140px); line-height: .86; letter-spacing: -.055em; font-weight: 500; }
.about-copy p:not(.eyebrow) { max-width: 560px; margin: 0; font-size: clamp(18px, 1.7vw, 25px); line-height: 1.35; letter-spacing: -.035em; }
.about-copy p:not(.eyebrow) + p { margin-top: 18px; }

.service-list { border-top: 1px solid var(--ink); }
.service-card { display: grid; grid-template-columns: .55fr 1.4fr 2fr; gap: 3vw; align-items: start; padding: 28px 0; border-bottom: 1px solid var(--ink); transition: padding .25s, background .25s; }
.service-card:hover { padding-inline: 18px; color: var(--cream); background: var(--red); }
.service-card span { font-size: 10px; font-weight: 800; }
.service-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(36px, 4vw, 64px); line-height: .9; font-weight: 500; }
.service-card p { max-width: 500px; margin: 0; color: inherit; font-size: 13px; }

.contact-cta { position: relative; min-height: 52vh; padding: 6vw 3vw; overflow: hidden; color: var(--ink); background: var(--pink); }
.contact-heading { padding-bottom: 0; }
.contact-cta h2 { max-width: 1050px; }
.round-link { position: absolute; right: 8vw; bottom: 6vw; width: 150px; height: 150px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--red); border-radius: 50%; color: var(--red); font-family: var(--serif); font-size: 29px; line-height: .9; transition: .3s; }
.round-link span { margin-left: 12px; color: currentColor; font-family: var(--sans); }
.round-link:hover { color: var(--cream); background: var(--red); transform: rotate(8deg); }

.site-footer { display: grid; grid-template-columns: 2fr 2fr 2fr auto; gap: 20px; padding: 30px 3vw; color: var(--cream); background: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.site-footer .wordmark { color: var(--cream); }
.site-footer div { display: flex; flex-direction: column; gap: 7px; }
.site-footer div:nth-child(3) { flex-direction: row; gap: 18px; }
.site-footer a:hover { color: var(--pink); }

/* Project pages */
.project-page { --accent: var(--ink); background: var(--cream); }
.project-page.sephora,
.project-page.w-hotels,
.project-page.vivier { --accent: var(--ink); }
.project-page .site-header { position: absolute; width: 100%; color: var(--cream); background: linear-gradient(180deg, rgba(20, 20, 20, .42), rgba(20, 20, 20, 0)); border-color: rgba(255,255,255,.28); }
.project-page .site-header .wordmark, .project-page .site-header .site-nav { color: var(--cream); }
.project-page .work-dropdown { color: var(--ink); }
.project-hero { position: relative; height: 100vh; min-height: 650px; color: var(--cream); background: var(--accent); }
.project-hero-media { position: absolute; inset: 0; }
.project-hero-media:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), transparent 45%, rgba(0,0,0,.38)); }
.project-hero-copy { position: absolute; inset: auto 3vw 4vw; z-index: 2; }
.project-hero-copy h1 { margin: 0; font-family: var(--serif); font-size: clamp(104px, 18vw, 300px); line-height: .7; font-weight: 400; letter-spacing: -.055em; }
.project-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding: 7vw 3vw 6vw; }
.project-facts { display: grid; grid-template-columns: 1fr 1fr; align-content: start; border-top: 1px solid var(--ink); }
.fact { padding: 14px 12px 22px 0; border-bottom: 1px solid var(--line); }
.fact span { display: block; margin-bottom: 8px; color: var(--red); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.fact b { font-size: 12px; font-weight: 800; line-height: 1.3; }
.project-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; align-items: start; }
.project-overview h2 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(38px, 4.6vw, 76px); line-height: .94; letter-spacing: -.045em; font-weight: 500; }
.project-overview p { max-width: 590px; margin: 0; color: var(--muted); font-size: clamp(15px, 1.15vw, 18px); }

.asset-section { padding: 6vw 3vw; border-top: 1px solid var(--line); }
.asset-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3vw;
  margin-bottom: 28px;
}
.asset-section-copy { max-width: 640px; }
.asset-section-heading h2 { margin: 0 0 14px; color: var(--ink); font-family: var(--serif); font-size: clamp(42px, 5vw, 88px); line-height: .9; letter-spacing: -.05em; font-weight: 500; }
.asset-section-heading p { max-width: 560px; margin: 0; color: var(--muted); }
.asset-section-actions { display: flex; align-items: flex-end; gap: 12px; margin-left: auto; }
.text-link { align-self: end; white-space: nowrap; color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.carousel-controls { display: flex; gap: 8px; justify-content: flex-end; }
.carousel-controls button {
  min-width: 72px;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.carousel-controls button:hover { color: var(--cream); background: var(--ink); }
.carousel-track, .media-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 23vw);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 18px;
}
.carousel-track { grid-auto-columns: minmax(260px, 24vw); }
.media-tile { aspect-ratio: 4 / 5; overflow: hidden; scroll-snap-align: start; border: 1px solid var(--line); background: var(--pink); }
.media-link { position: relative; display: block; width: 100%; height: 100%; }
.media-link-label { position: absolute; right: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid var(--cream); color: var(--cream); background: rgba(20, 20, 20, .58); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transform: translateY(6px); transition: .25s ease; }
.media-link:hover .media-link-label { opacity: 1; transform: translateY(0); }
.video-row .media-tile { aspect-ratio: 9 / 16; background: #141414; }
.wide-video .media-row { display: block; overflow: visible; padding-bottom: 0; }
.wide-video .media-tile { width: min(1120px, 100%); aspect-ratio: 137 / 114; background: #141414; }
.wide-video .media-tile video { object-fit: contain; }
.media-tile video { background: #141414; }
.media-tile video::-webkit-media-controls-panel { background-image: linear-gradient(transparent, rgba(0,0,0,.45)); }

.case-study { padding: 4vw 3vw 8vw; }
.case-row { display: grid; grid-template-columns: .6fr 1fr 1.8fr; gap: 3vw; padding: 30px 0 56px; border-top: 1px solid var(--ink); }
.case-row .number { font-family: var(--serif); color: var(--red); font-size: 40px; }
.case-row h2 { margin: 0; font-family: var(--serif); font-size: clamp(36px, 4.6vw, 72px); line-height: .9; font-weight: 500; }
.case-row p { max-width: 760px; margin: 0; color: var(--muted); font-size: 15px; white-space: pre-line; }
.next-project { display: flex; justify-content: space-between; align-items: end; padding: 7vw 3vw; color: var(--cream); background: var(--accent); }
.next-project span { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.next-project strong { display: block; margin-top: 40px; font-family: var(--serif); font-size: clamp(70px, 12vw, 190px); line-height: .75; font-weight: 500; }
.next-project b { color: currentColor; transition: transform .3s; }
.next-project:hover b { transform: translate(7px,-7px); }

/* Contact */
.contact-page { min-height: 100vh; display: flex; flex-direction: column; color: var(--cream); background: var(--ink); }
.contact-page .site-header { color: var(--cream); background: transparent; border-color: rgba(255,255,255,.3); }
.contact-page .site-header .wordmark { color: var(--cream); }
.contact-main { flex: 1; display: grid; grid-template-columns: 2.5fr 1fr; gap: 5vw; padding: 10vh 3vw 5vw; }
.contact-main h1 { margin: 0; font-family: var(--serif); font-size: clamp(78px, 12vw, 205px); line-height: .82; font-weight: 500; letter-spacing: -.055em; }
.contact-main h1 em { color: var(--pink); }
.contact-side { align-self: end; }
.contact-side p { max-width: 340px; margin-bottom: 35px; font-size: 16px; }
.contact-links { display: flex; flex-direction: column; border-top: 1px solid rgba(255,255,255,.5); }
.contact-links a { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-links a:hover { color: var(--pink); }

@media (max-width: 980px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-overview { grid-template-columns: 1fr; }
  .asset-section-heading { display: block; }
  .asset-section-actions { margin: 18px 0 0; }
}

@media (max-width: 800px) {
  .site-header { padding: 18px 20px; }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; padding: 22px 20px; flex-direction: column; color: var(--ink); background: var(--cream); border-bottom: 1px solid var(--ink); }
  .site-nav.open { display: flex; }
  .nav-item { width: 100%; }
  .work-dropdown { position: static; min-width: 0; margin-top: 12px; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; }
  .hero { min-height: 88vh; padding: 28px 20px 30px; }
  .hero-kicker, .hero-bottom { display: block; }
  .hero-kicker span + span { display: block; margin-top: 10px; }
  .hero-main { display: block; margin: 9vh 0 7vh; }
  .hero h1 { font-size: clamp(42px, 12vw, 76px); }
  .hero h1 em { font-size: 1.02em; line-height: .78; }
  .hero-line { white-space: nowrap; }
  .hero-stack { width: min(72vw, 320px); margin: 42px 8vw 0 auto; }
  .stack-photo { width: 68%; height: 76%; }
  .button-row { margin-top: 28px; }
  .button { min-width: 0; flex: 1; gap: 10px; }
  .featured, .services, .about-section { padding: 72px 20px; }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: 24px; }
  .section-heading-work .eyebrow { padding-top: 18px; text-align: left; }
  .project-grid { grid-template-columns: 1fr; }
  .about-section { display: block; }
  .about-image { margin-bottom: 36px; }
  .service-card { grid-template-columns: 38px 1fr; }
  .service-card p { grid-column: 2; }
  .contact-cta { min-height: 560px; padding: 60px 20px; }
  .round-link { right: 20px; bottom: 30px; width: 120px; height: 120px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 30px 20px; }
  .site-footer div:nth-child(3) { flex-direction: column; }
  .project-hero { min-height: 580px; }
  .project-hero-copy { inset: auto 20px 28px; }
  .project-intro { display: block; padding: 64px 20px; }
  .project-overview { margin-top: 42px; }
  .asset-section { padding: 58px 20px; }
  .carousel-track, .media-row { grid-auto-columns: minmax(245px, 78vw); }
  .case-study { padding: 20px 20px 70px; }
  .case-row { display: grid; grid-template-columns: 38px 1fr; padding-bottom: 45px; }
  .case-row p { grid-column: 2; }
  .next-project { padding: 70px 20px; }
  .contact-main { display: block; padding: 14vh 20px 70px; }
  .contact-side { margin-top: 70px; }
}
