:root {
  --ink: #f2eee6;
  --muted: #a9a196;
  --dim: #6f685f;
  --line: rgba(242, 238, 230, 0.16);
  --black: #050504;
  --deep: #0c0b09;
  --gold: #d6c399;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0;
}

body::selection {
  background: var(--gold);
  color: var(--black);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(22px, 4vw, 62px);
  color: var(--ink);
  transition: background 500ms ease, border-color 500ms ease, padding 500ms ease;
}

.site-header.is-scrolled {
  padding-block: 18px;
  background: rgba(5, 5, 4, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 16px);
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 12px rgba(5, 5, 4, 0.46));
}

.brand-name {
  color: rgba(242, 238, 230, 0.82);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 360ms ease;
}

.brand-lockup:hover .brand-name,
.brand-lockup:focus-visible .brand-name {
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
  color: rgba(242, 238, 230, 0.78);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-bottom: 7px;
}

.site-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  will-change: opacity, transform;
  animation-duration: 24s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.hero-slide:nth-child(1) {
  opacity: 1;
  animation-name: heroOne;
}

.hero-slide:nth-child(2) {
  animation-name: heroTwo;
}

.hero-slide:nth-child(3) {
  animation-name: heroThree;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 42%, rgba(5, 5, 4, 0.02), rgba(5, 5, 4, 0.36) 58%, rgba(5, 5, 4, 0.72) 100%),
    linear-gradient(to bottom, rgba(5, 5, 4, 0.28), rgba(5, 5, 4, 0.03) 35%, rgba(5, 5, 4, 0.76));
}

.hero-content {
  width: min(980px, calc(100% - 44px));
  padding-top: 8vh;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(58px, 11vw, 152px);
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(242, 238, 230, 0.22);
  transform: translateX(-50%);
}

.scroll-cue::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--ink);
  content: "";
  animation: scrollLine 2.8s ease-in-out infinite;
}

.section {
  padding: clamp(92px, 14vw, 180px) clamp(22px, 5vw, 76px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(0, 2fr);
  gap: clamp(38px, 9vw, 138px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-copy {
  max-width: 820px;
}

.section-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(48px, 7vw, 104px);
}

.section-copy p {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

.philosophy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(5, 5, 4, 0.35), rgba(5, 5, 4, 0.34) 52%, rgba(5, 5, 4, 0.28)),
    url("assets/images/workingspace-new.png") center / cover no-repeat;
  background-size: cover;
}

.philosophy .section-grid {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 18px rgba(5, 5, 4, 0.62);
}

.philosophy .section-copy p {
  color: rgba(242, 238, 230, 0.86);
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto clamp(52px, 9vw, 110px);
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 86px);
}

.work-list {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(46px, 8vw, 120px) clamp(24px, 5vw, 76px);
}

.work-item-offset {
  transform: translateY(12vw);
}

.work-image-wrap {
  display: block;
  overflow: hidden;
  background: #11100e;
  aspect-ratio: 1 / 1.22;
}

.work-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.01);
  transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), filter 1200ms ease;
}

.work-image-wrap:hover .work-image,
.work-image-wrap:focus-visible .work-image {
  filter: saturate(1) contrast(1.12);
  transform: scale(1.07);
}

.work-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 22px;
}

.work-meta span {
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.work-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  text-align: right;
}

.practice {
  margin-top: clamp(64px, 12vw, 170px);
  background: linear-gradient(180deg, #080807, #11100e 58%, #090908);
}

.practice-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.practice-heading {
  max-width: 840px;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.practice-heading h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.98;
}

.practice-heading > p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

.practice-profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.artist-profile {
  display: grid;
  grid-template-columns: minmax(160px, 0.78fr) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--line);
}

.artist-photo {
  margin: 0;
  overflow: hidden;
  background: #15130f;
  aspect-ratio: 4 / 5;
}

.artist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transform: scale(1.01);
  transition: transform 1200ms cubic-bezier(0.19, 1, 0.22, 1), filter 1200ms ease;
}

.artist-profile:hover .artist-photo img {
  filter: saturate(1) contrast(1.1);
  transform: scale(1.055);
}

.artist-copy {
  color: var(--muted);
}

.artist-credential {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artist-copy h3 {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 54px);
  font-weight: 400;
  line-height: 1;
}

.artist-copy p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.72;
}

.visions {
  background: var(--deep);
}

.vision-gallery {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1fr;
  gap: clamp(14px, 2vw, 28px);
  align-items: end;
}

.vision-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #11100e;
}

.vision-gallery figure:nth-child(1) {
  aspect-ratio: 1 / 1.18;
}

.vision-gallery figure:nth-child(2) {
  aspect-ratio: 1 / 1.45;
  margin-bottom: 8vw;
}

.vision-gallery figure:nth-child(3) {
  aspect-ratio: 1 / 0.9;
}

.vision-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.19, 1, 0.22, 1);
}

.vision-gallery figure:hover img {
  opacity: 1;
  transform: scale(1.07);
}

.contact {
  min-height: 86svh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 12vw, 170px) clamp(22px, 5vw, 76px);
  text-align: center;
}

.contact-inner {
  max-width: 840px;
}

.contact h2 {
  margin-bottom: 36px;
  font-size: clamp(48px, 7vw, 104px);
}

.contact a {
  display: inline-block;
  border-bottom: 1px solid rgba(214, 195, 153, 0.55);
  color: var(--gold);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.8;
  transition: color 360ms ease, border-color 360ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(22px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1000ms ease, transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

@keyframes heroOne {
  0% {
    opacity: 1;
    transform: translate3d(3%, 0, 0) scale(1.18);
  }

  25% {
    opacity: 1;
    transform: translate3d(-2%, 0, 0) scale(1.18);
  }

  33.333% {
    opacity: 0;
    transform: translate3d(-3%, 0, 0) scale(1.18);
  }

  91.667% {
    opacity: 0;
    transform: translate3d(4%, 0, 0) scale(1.18);
  }

  100% {
    opacity: 1;
    transform: translate3d(3%, 0, 0) scale(1.18);
  }
}

@keyframes heroTwo {
  0%,
  25% {
    opacity: 0;
    transform: translate3d(-4%, 0, 0) scale(1.18);
  }

  33.333% {
    opacity: 1;
    transform: translate3d(-3%, 0, 0) scale(1.18);
  }

  58.333% {
    opacity: 1;
    transform: translate3d(2%, 0, 0) scale(1.18);
  }

  66.667%,
  100% {
    opacity: 0;
    transform: translate3d(3%, 0, 0) scale(1.18);
  }
}

@keyframes heroThree {
  0%,
  58.333% {
    opacity: 0;
    transform: translate3d(-3%, -2%, 0) scale(1.18);
  }

  66.667% {
    opacity: 1;
    transform: translate3d(-2%, -1.2%, 0) scale(1.18);
  }

  91.667% {
    opacity: 1;
    transform: translate3d(2%, 1.4%, 0) scale(1.18);
  }

  100% {
    opacity: 0;
    transform: translate3d(3%, 2.2%, 0) scale(1.18);
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(200%);
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 18px 20px;
  }

  .site-nav {
    gap: 14px;
    font-size: 10px;
  }

  .section-grid,
  .work-list,
  .vision-gallery {
    grid-template-columns: 1fr;
  }

  .section-copy h2 {
    margin-bottom: 24px;
  }

  .work-item-offset {
    transform: none;
  }

  .work-image-wrap {
    aspect-ratio: 1 / 1.05;
  }

  .work-meta {
    display: block;
  }

  .work-meta h3 {
    margin-top: 12px;
    text-align: left;
  }

  .practice-profiles,
  .artist-profile {
    grid-template-columns: 1fr;
  }

  .artist-photo {
    aspect-ratio: 1 / 1.05;
  }

  .vision-gallery figure:nth-child(2) {
    margin-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-nav a:nth-child(1),
  .site-nav a:nth-child(3) {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .section {
    padding-block: 80px;
  }

  .section-copy p {
    font-size: 18px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
