@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/InstrumentSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ivory: #eee9df;
  --ivory-light: #faf7f0;
  --ink: #18120f;
  --ink-soft: #403733;
  --wine: #4d0e1e;
  --wine-light: #6d1b30;
  --silver: #b8b4ad;
  --line: rgba(24, 18, 15, .2);
  --line-light: rgba(250, 247, 240, .28);
  --sans: "Manrope", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, monospace;
  --gutter: clamp(1.1rem, 3.1vw, 3.8rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

::selection {
  background: var(--wine);
  color: var(--ivory-light);
}

:focus-visible {
  outline: 2px solid var(--wine-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .5rem;
  left: .5rem;
  padding: .75rem 1rem;
  background: var(--ivory-light);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-bar {
  position: fixed;
  z-index: 200;
  top: 1rem;
  right: var(--gutter);
  left: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 4.55rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(24, 18, 15, .24);
  background: rgba(250, 247, 240, .94);
  backdrop-filter: blur(16px);
  transition: top 350ms var(--ease), min-height 350ms var(--ease), box-shadow 350ms ease;
}

.site-bar.is-scrolled {
  top: .55rem;
  min-height: 4.15rem;
  box-shadow: 0 12px 40px rgba(24, 18, 15, .1);
}

.site-bar__brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .13em;
}

.site-bar__brand::before {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--wine);
  color: var(--ivory-light);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0;
  content: "AV";
}

.site-bar__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.8rem);
}

.site-bar__nav a,
.site-bar__contact {
  position: relative;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-bar__nav a::after {
  position: absolute;
  right: 0;
  bottom: -.36rem;
  left: 0;
  height: 1px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease);
}

.site-bar__nav a:hover::after,
.site-bar__nav a:focus-visible::after,
.site-bar__nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-bar__contact {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.site-bar__contact span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background 280ms ease, color 280ms ease, transform 350ms var(--ease);
}

.site-bar__contact:hover span,
.site-bar__contact:focus-visible span {
  background: var(--wine);
  border-color: var(--wine);
  color: #fff;
  transform: rotate(45deg);
}

.menu-trigger {
  display: none;
  border: 0;
  background: transparent;
}

.lux-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory-light);
  isolation: isolate;
}

.lux-hero__media,
.lux-hero__media img,
.lux-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lux-hero__media {
  z-index: -2;
}

.lux-hero__media img {
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.04) brightness(.84);
  transform: scale(1.01);
  transition: transform 1.4s var(--ease);
}

.lux-hero:hover .lux-hero__media img {
  transform: scale(1.035);
}

.lux-hero__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 11, 9, .35) 0%, transparent 35%, rgba(16, 11, 9, .08) 55%, rgba(16, 11, 9, .88) 100%),
    linear-gradient(90deg, rgba(16, 11, 9, .55), transparent 52%);
}

.lux-hero__inner {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  padding: clamp(7rem, 11vw, 10rem) var(--gutter) 1.4rem;
}

.lux-hero__side {
  align-self: center;
  display: grid;
  gap: 1.5rem;
  max-width: 27rem;
}

.kicker {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.kicker::before {
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.lux-hero__side p {
  color: rgba(250, 247, 240, .76);
  font-size: clamp(.9rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.signature-link {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  width: max-content;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signature-link i {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
  transition: background 280ms ease, color 280ms ease, transform 380ms var(--ease);
}

.signature-link:hover i,
.signature-link:focus-visible i {
  background: currentColor;
  color: var(--ink);
  transform: rotate(45deg);
}

.lux-hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(250, 247, 240, .48);
}

.lux-hero h1 {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 3.5rem);
  font-size: clamp(6rem, 15vw, 17rem);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: .64;
}

.lux-hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.lux-hero__edition {
  padding-bottom: .4rem;
  font-family: var(--mono);
  font-size: .5rem;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, .55fr);
  gap: clamp(3rem, 9vw, 10rem);
  padding: clamp(6rem, 12vw, 12rem) var(--gutter);
  background: var(--ivory-light);
}

.manifesto h2 {
  max-width: 13ch;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.8vw, 10rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .8;
}

.manifesto h2 em {
  color: var(--wine);
  font-weight: 400;
}

.manifesto__copy {
  align-self: end;
  display: grid;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.manifesto__copy p {
  color: var(--ink-soft);
  font-size: clamp(.9rem, 1.2vw, 1.08rem);
  line-height: 1.7;
}

.section-shell {
  padding: clamp(6rem, 11vw, 11rem) var(--gutter);
}

.section-shell--dark {
  background: var(--ink);
  color: var(--ivory-light);
}

.section-shell--wine {
  background: var(--wine);
  color: var(--ivory-light);
}

.section-heading {
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: end;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid currentColor;
}

.section-heading__index,
.section-heading__meta {
  font-family: var(--mono);
  font-size: .5rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section-heading__index {
  color: var(--wine-light);
}

.section-shell--dark .section-heading__index,
.section-shell--wine .section-heading__index {
  color: #d8a9b2;
}

.section-heading h2 {
  max-width: 15ch;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: .82;
}

.work-stack {
  display: grid;
  gap: clamp(5rem, 10vw, 11rem);
  padding-top: clamp(3rem, 7vw, 7rem);
}

.work-piece {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: end;
}

.work-piece:nth-child(even) {
  grid-template-columns: minmax(18rem, .65fr) minmax(0, 1.35fr);
}

.work-piece:nth-child(even) .work-piece__media {
  order: 2;
}

.work-piece__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8d2c9;
}

.work-piece__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 700ms ease;
}

.work-piece:hover .work-piece__media img {
  filter: contrast(1.03);
  transform: scale(1.025);
}

.work-piece__media::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(250, 247, 240, .36);
  content: "";
  pointer-events: none;
}

.work-piece__info {
  display: grid;
  gap: 1.4rem;
  padding-bottom: 1rem;
}

.work-piece__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .5rem;
  text-transform: uppercase;
}

.work-piece h3 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .78;
}

.work-piece__info > p {
  max-width: 31rem;
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.7;
}

.work-piece__info .signature-link:hover i,
.work-piece__info .signature-link:focus-visible i {
  background: var(--wine);
  color: #fff;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(19rem, .7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-top: clamp(4rem, 8vw, 8rem);
}

.services-intro {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.services-intro h3 {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .82;
}

.services-intro p {
  max-width: 28rem;
  margin-top: 2rem;
  color: rgba(250, 247, 240, .64);
  font-size: .82rem;
  line-height: 1.7;
}

.service-ledger {
  border-top: 1px solid var(--line-light);
}

.service-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: clamp(1.8rem, 3.5vw, 3.4rem) 0;
  border-bottom: 1px solid var(--line-light);
}

.service-item__number {
  color: #d8a9b2;
  font-family: var(--mono);
  font-size: .5rem;
}

.service-item__body {
  display: grid;
  grid-template-columns: minmax(12rem, .7fr) minmax(15rem, 1fr);
  gap: 2rem;
}

.service-item h4 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .86;
}

.service-item__details {
  display: grid;
  gap: 1.2rem;
}

.service-item__details p {
  color: rgba(250, 247, 240, .66);
  font-size: .78rem;
  line-height: 1.7;
}

.service-item__details ul {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.1rem;
  margin: 0;
  padding: 0;
  color: rgba(250, 247, 240, .45);
  font-family: var(--mono);
  font-size: .46rem;
  list-style: none;
  text-transform: uppercase;
}

.value-band {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(6rem, 12vw, 12rem) var(--gutter);
  background: var(--wine);
  color: var(--ivory-light);
}

.value-band h2 {
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 9.5vw, 11rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .76;
}

.value-band__notes {
  align-self: end;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line-light);
}

.value-band__notes div {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
}

.value-band__notes span {
  font-family: var(--mono);
  font-size: .48rem;
}

.value-band__notes p {
  color: rgba(250, 247, 240, .72);
  font-size: .76rem;
  line-height: 1.6;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 28rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-card__number {
  color: var(--wine-light);
  font-family: var(--mono);
  font-size: .5rem;
}

.process-card h3 {
  align-self: center;
  max-width: 9ch;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .82;
}

.process-card p {
  color: var(--ink-soft);
  font-size: .76rem;
  line-height: 1.65;
}

.studio-portrait {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  min-height: 46rem;
  background: var(--ivory-light);
}

.studio-portrait__visual {
  overflow: hidden;
  background: #e8dfd2;
}

.studio-portrait__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-portrait__content {
  align-self: center;
  display: grid;
  gap: 2rem;
  padding: clamp(3rem, 8vw, 9rem);
}

.studio-portrait h2 {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .8;
}

.studio-portrait__content > p {
  max-width: 37rem;
  color: var(--ink-soft);
  font-size: .84rem;
  line-height: 1.75;
}

.contact-stage {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 82svh;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter) 1.5rem;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory-light);
}

.contact-stage__top,
.contact-stage__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: .48rem;
  text-transform: uppercase;
}

.contact-stage__main {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  padding: 3rem 0;
}

.contact-stage h2 {
  max-width: 10ch;
  font-family: var(--serif);
  font-size: clamp(5.5rem, 12vw, 14rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .68;
}

.contact-stage h2 em {
  color: #d8a9b2;
  font-weight: 400;
}

.contact-stage__mail {
  display: grid;
  gap: .8rem;
  min-width: min(100%, 25rem);
  padding: 1rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-stage__mail small {
  font-family: var(--mono);
  font-size: .48rem;
  text-transform: uppercase;
}

.contact-stage__mail strong {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 500;
}

.contact-stage__bottom {
  align-self: end;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 0;
}

.site-footer-v4 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem var(--gutter);
  background: #0f0b09;
  color: rgba(250, 247, 240, .58);
  font-family: var(--mono);
  font-size: .47rem;
  text-transform: uppercase;
}

.site-footer-v4 nav {
  display: flex;
  gap: 1.4rem;
}

.site-footer-v4 > a:last-child {
  justify-self: end;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 750ms ease, transform 950ms var(--ease);
}

.motion-ready [data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 78svh;
  padding: clamp(8rem, 13vw, 12rem) var(--gutter) 2rem;
  background: var(--ivory-light);
}

.page-hero__top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--mono);
  font-size: .5rem;
  text-transform: uppercase;
}

.page-hero h1 {
  align-self: center;
  max-width: 11ch;
  margin: 3rem 0;
  font-family: var(--serif);
  font-size: clamp(5.5rem, 12vw, 14rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .7;
}

.page-hero h1 em {
  color: var(--wine);
  font-weight: 400;
}

.page-hero__foot {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 34rem);
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.page-hero__foot p {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.7;
}

.project-index-v4 {
  display: grid;
  gap: clamp(4rem, 10vw, 10rem);
  padding-top: clamp(4rem, 8vw, 8rem);
}

.project-index-v4 .work-piece {
  grid-template-columns: 1fr;
}

.project-index-v4 .work-piece:nth-child(even) {
  grid-template-columns: 1fr;
}

.project-index-v4 .work-piece:nth-child(even) .work-piece__media {
  order: 0;
}

.project-index-v4 .work-piece__media {
  aspect-ratio: 16 / 8;
}

.project-index-v4 .work-piece__info {
  grid-template-columns: 5rem 1fr minmax(18rem, .5fr) auto;
  align-items: end;
  gap: 1rem;
}

.project-index-v4 .work-piece__top {
  display: contents;
}

.project-index-v4 .work-piece__info h3 {
  font-size: clamp(4.5rem, 9vw, 10rem);
}

.project-index-v4 .work-piece__info > p {
  padding-bottom: .6rem;
}

.contact-page-v4 {
  min-height: 100svh;
  padding: clamp(8rem, 13vw, 12rem) var(--gutter) 2rem;
  background: var(--wine);
  color: var(--ivory-light);
}

.contact-page-v4__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: .5rem;
  text-transform: uppercase;
}

.contact-page-v4 h1 {
  max-width: 10ch;
  margin: clamp(4rem, 9vw, 9rem) 0;
  font-family: var(--serif);
  font-size: clamp(5.5rem, 12vw, 14rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .68;
}

.contact-page-v4__grid {
  display: grid;
  grid-template-columns: 1fr minmax(20rem, 34rem);
  gap: 4rem;
  align-items: end;
}

.contact-page-v4__mail {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(1.4rem, 3vw, 3.2rem);
}

.contact-page-v4__details {
  display: grid;
  gap: 1rem;
}

.contact-page-v4__details div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-light);
  font-size: .72rem;
  line-height: 1.6;
}

.contact-page-v4__details small {
  font-family: var(--mono);
  font-size: .46rem;
  text-transform: uppercase;
}

.case-v4-hero {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  min-height: 100svh;
  padding-top: 6.5rem;
  background: var(--ivory-light);
}

.case-v4-hero__copy {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 3rem var(--gutter) 2rem;
}

.case-v4-hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .48rem;
  text-transform: uppercase;
}

.case-v4-hero h1 {
  align-self: center;
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .68;
}

.case-v4-hero__intro {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .8rem;
  line-height: 1.7;
}

.case-v4-hero__visual {
  overflow: hidden;
}

.case-v4-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-v4-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(5rem, 10vw, 10rem) var(--gutter);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-v4-story article {
  min-height: 22rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-v4-story small {
  color: var(--wine-light);
  font-family: var(--mono);
  font-size: .47rem;
  text-transform: uppercase;
}

.case-v4-story h2 {
  margin: 4rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: .86;
}

.case-v4-story p {
  color: var(--ink-soft);
  font-size: .76rem;
  line-height: 1.65;
}

.case-v4-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--gutter);
  padding: 0 var(--gutter) clamp(6rem, 12vw, 12rem);
}

.case-v4-gallery__panel {
  min-height: 38rem;
  overflow: hidden;
}

.case-v4-gallery__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-v4-gallery__panel--type {
  display: grid;
  align-content: space-between;
  padding: 2rem;
  background: var(--wine);
  color: var(--ivory-light);
}

.case-v4-gallery__panel--type strong {
  max-width: 8ch;
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .75;
}

.case-v4-gallery__panel--type small {
  font-family: var(--mono);
  font-size: .48rem;
  text-transform: uppercase;
}

.legal-v4 {
  padding: clamp(8rem, 13vw, 12rem) var(--gutter) 7rem;
  background: var(--ivory-light);
}

.legal-v4 h1 {
  margin-bottom: 4rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 400;
  letter-spacing: -.06em;
}

.legal-v4__content {
  max-width: 55rem;
}

.legal-v4__content h2 {
  margin: 2.8rem 0 .8rem;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.legal-v4__content p {
  color: var(--ink-soft);
  font-size: .82rem;
  line-height: 1.75;
}

@media (max-width: 68rem) {
  .site-bar {
    grid-template-columns: 1fr auto;
  }

  .site-bar__nav {
    display: none;
  }

  .manifesto,
  .value-band,
  .studio-portrait {
    grid-template-columns: 1fr;
  }

  .manifesto__copy,
  .value-band__notes {
    max-width: 36rem;
  }

  .work-piece,
  .work-piece:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .work-piece:nth-child(even) .work-piece__media {
    order: 0;
  }

  .work-piece__info {
    max-width: 42rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-intro {
    position: static;
  }

  .studio-portrait__visual {
    aspect-ratio: 3 / 2;
  }

  .contact-stage__main {
    grid-template-columns: 1fr;
  }

  .project-index-v4 .work-piece__info {
    grid-template-columns: 4rem 1fr;
  }

  .project-index-v4 .work-piece__info > p,
  .project-index-v4 .signature-link {
    grid-column: 2;
  }

  .case-v4-hero {
    grid-template-columns: 1fr;
  }

  .case-v4-hero__copy {
    min-height: 62svh;
  }

  .case-v4-hero__visual {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 48rem) {
  .site-bar {
    top: .6rem;
    right: .7rem;
    left: .7rem;
    min-height: 4.2rem;
    padding: 0 .85rem;
  }

  .site-bar__contact {
    display: none;
  }

  .menu-trigger {
    justify-self: end;
    display: grid;
    gap: .32rem;
    padding: .7rem 0 .7rem .7rem;
    cursor: pointer;
  }

  .menu-trigger span {
    width: 1.55rem;
    height: 1px;
    background: currentColor;
    transition: transform 280ms var(--ease);
  }

  .menu-trigger[aria-expanded="true"] span:first-child {
    transform: translateY(.2rem) rotate(45deg);
  }

  .menu-trigger[aria-expanded="true"] span:last-child {
    transform: translateY(-.2rem) rotate(-45deg);
  }

  .site-bar__nav {
    position: fixed;
    z-index: -1;
    inset: -.6rem -.7rem auto;
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 1.4rem;
    height: 100svh;
    padding: 7rem 1.5rem 2rem;
    background: var(--ivory-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 300ms ease, visibility 300ms ease, transform 450ms var(--ease);
  }

  .site-bar__nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-bar__nav a {
    font-family: var(--serif);
    font-size: 3.3rem;
    font-weight: 400;
    letter-spacing: -.04em;
    text-transform: none;
  }

  .lux-hero__inner {
    padding-top: 7rem;
  }

  .lux-hero__media img {
    object-position: 59% center;
  }

  .lux-hero__side {
    align-self: end;
    max-width: 20rem;
    margin-bottom: 2rem;
  }

  .lux-hero__side p {
    font-size: .82rem;
  }

  .lux-hero__bottom {
    grid-template-columns: 1fr;
  }

  .lux-hero h1 {
    display: grid;
    gap: 0;
    font-size: clamp(5rem, 23vw, 7.2rem);
  }

  .lux-hero h1 em {
    margin-left: 1.1em;
  }

  .lux-hero__edition {
    display: none;
  }

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

  .manifesto h2 {
    font-size: 4.5rem;
  }

  .section-heading {
    grid-template-columns: 2.5rem 1fr;
  }

  .section-heading__meta {
    display: none;
  }

  .section-heading h2 {
    font-size: 4rem;
  }

  .work-piece__media,
  .project-index-v4 .work-piece__media {
    aspect-ratio: 4 / 5;
  }

  .work-piece h3 {
    font-size: 4.5rem;
  }

  .service-item {
    grid-template-columns: 2.2rem 1fr;
  }

  .service-item__body {
    grid-template-columns: 1fr;
  }

  .value-band h2 {
    font-size: 5rem;
  }

  .process-line,
  .case-v4-story {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 21rem;
  }

  .contact-stage h2 {
    font-size: 5.4rem;
  }

  .contact-stage__top span:last-child,
  .contact-stage__bottom span:nth-child(2) {
    display: none;
  }

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

  .site-footer-v4 nav {
    display: none;
  }

  .page-hero {
    min-height: 68svh;
    padding-top: 8rem;
  }

  .page-hero h1 {
    font-size: 5.2rem;
  }

  .page-hero__top span:last-child {
    display: none;
  }

  .page-hero__foot {
    grid-template-columns: 1fr;
  }

  .page-hero__foot p {
    grid-column: 1;
  }

  .project-index-v4 .work-piece__info {
    grid-template-columns: 2.5rem 1fr;
  }

  .project-index-v4 .work-piece__info h3 {
    font-size: 4.7rem;
  }

  .contact-page-v4 h1 {
    font-size: 5.4rem;
  }

  .contact-page-v4__grid,
  .case-v4-gallery {
    grid-template-columns: 1fr;
  }

  .case-v4-hero__copy {
    min-height: 58svh;
    padding-top: 2rem;
  }

  .case-v4-hero h1 {
    font-size: 5.5rem;
  }

  .case-v4-gallery__panel {
    min-height: 28rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
