:root {
  --black: #0b0b09;
  --charcoal: #151512;
  --warm-gray: #b9b3a8;
  --fog: #d3cec4;
  --white: #f2eee7;
  --beige: #90887c;
  --line: rgba(242, 238, 231, 0.26);
  --pad: clamp(24px, 4vw, 64px);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --slow: 1200ms cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.section-dark { background: var(--black); color: var(--white); }
.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 74px;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  padding: 0 var(--pad);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 11, 9, 0.72), rgba(11, 11, 9, 0));
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.72);
}
.brand {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 92px);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}
.talk-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}
.talk-link span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}
.hero-stage {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,9,.74), transparent 32%, rgba(11,11,9,.52) 100%),
    linear-gradient(0deg, rgba(11,11,9,.45), transparent 42%);
  pointer-events: none;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.65) contrast(1.05) brightness(.88);
  transform: scale(1.04);
  animation: water-breathe 13s ease-in-out infinite alternate;
}
.hero-cliff,
.moon,
.hero-rock,
.hero-person,
.hero-arch,
.hero-debris {
  display: none;
}
.hero-cliff {
  position: absolute;
  left: -2vw;
  top: 0;
  width: min(32vw, 430px);
  height: 100%;
  object-fit: cover;
  filter: brightness(.52) contrast(1.24);
  animation: cliff-reveal 1800ms cubic-bezier(.16,1,.3,1) both;
}
.moon {
  position: absolute;
  left: 47%;
  top: 13%;
  width: min(26vw, 360px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 35%, rgba(242,238,231,.54), rgba(185,179,168,.24) 58%, transparent 70%);
  filter: blur(.4px);
  opacity: .7;
  animation: fade-up 1600ms 240ms both;
}
.hero-rock {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 42%;
  width: min(34vw, 470px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 38px 42px rgba(0,0,0,.42));
}
.hero-person {
  position: absolute;
  z-index: 3;
  left: 50.7%;
  top: 35%;
  width: min(8.4vw, 118px);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fade-up 1300ms 620ms var(--slow) forwards;
}
.hero-arch {
  position: absolute;
  z-index: 1;
  right: 11%;
  top: 19%;
  width: min(25vw, 360px);
  opacity: .88;
  filter: saturate(.7) contrast(1.05);
}
.hero-debris {
  position: absolute;
  z-index: 4;
  right: 31%;
  top: 16%;
  width: min(17vw, 280px);
  opacity: .74;
  animation: debris 9s ease-in-out infinite alternate;
}
.water {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(11,11,9,.46), transparent);
  transform-origin: bottom center;
  animation: water-breathe 10s ease-in-out infinite alternate;
}
.drift { animation: rock-rise 1600ms 360ms var(--slow) both, drift 8s 2s ease-in-out infinite alternate; }
.parallax { animation: fade-left 1500ms 460ms both, arch-shift 11s 2s ease-in-out infinite alternate; }

.hero-copy {
  position: relative;
  z-index: 3;
  padding-left: clamp(30px, 12vw, 170px);
  padding-top: clamp(132px, 18vh, 190px);
  max-width: 820px;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(76px, 10.6vw, 150px);
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.hero h1 span {
  display: block;
  clip-path: inset(0 0 100% 0);
  animation: title-reveal 1350ms var(--slow) forwards;
}
.hero h1 span:nth-child(2) { animation-delay: 180ms; }
.hero-copy p {
  max-width: 350px;
  margin: 34px 0 0;
  color: var(--fog);
  font-size: 13px;
  line-height: 1.7;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  left: var(--pad);
  top: 46%;
  z-index: 4;
  height: 260px;
  display: flex;
  align-items: center;
  color: var(--fog);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 126px;
  margin-top: 20px;
  background: var(--line);
}
.page-index {
  position: absolute;
  right: var(--pad);
  top: 38%;
  z-index: 4;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--beige);
  font-family: var(--serif);
  font-size: 18px;
}
.page-index .active { color: var(--white); }
.showreel {
  position: absolute;
  right: var(--pad);
  bottom: 56px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--fog);
}
.showreel b {
  width: 34px;
  height: 34px;
  border: 1px solid var(--fog);
  border-radius: 50%;
  position: relative;
}
.showreel b::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  border-left: 8px solid var(--fog);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.featured {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(300px, 31%) 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(242,238,231,.08);
}
.featured-copy {
  z-index: 2;
  padding: 72px var(--pad);
  background: linear-gradient(90deg, rgba(11,11,9,.98), rgba(11,11,9,.76));
}
.section-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(92px, 9vw, 142px);
  line-height: .82;
  color: var(--white);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--warm-gray);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.featured h2,
.studio h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -.025em;
}
.featured h2 { font-size: clamp(30px, 3vw, 52px); }
.featured-copy > p:not(.eyebrow) {
  max-width: 280px;
  color: var(--fog);
  line-height: 1.65;
}
.text-cta {
  display: inline-flex;
  gap: 12px;
  margin-top: 32px;
  color: var(--fog);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.text-cta::after { content: "↗"; }
.text-cta.dark { color: var(--charcoal); border-bottom: 1px solid currentColor; }
.featured-visual {
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}
.featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.7) contrast(1.08) brightness(.82);
}

.works {
  padding: 68px var(--pad) 82px;
  background: var(--white);
  color: var(--charcoal);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 34px;
}
.works .eyebrow { color: var(--charcoal); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}
.work-card { cursor: pointer; display: block; }
.work-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: end;
  min-height: 58px;
  margin-bottom: 14px;
}
.work-meta span {
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: .8;
  color: var(--charcoal);
  transition: color 500ms ease;
}
.work-meta h3 {
  margin: 0 0 7px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform 500ms ease;
}
.image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.38;
  background: var(--charcoal);
}
.image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(rgba(11,11,9,.45) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  transition: opacity 500ms ease;
}
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.55) contrast(1.05);
  transition: transform 900ms cubic-bezier(.16,1,.3,1), filter 900ms ease;
}
.work-card:hover .image-wrap img { transform: scale(1.03); filter: saturate(.7) contrast(1.12); }
.work-card:hover .work-meta h3 { transform: translateX(8px); }
.work-card:hover .work-meta span { color: var(--beige); }
.work-card:hover .image-wrap::after { opacity: .28; }

.studio {
  display: grid;
  grid-template-columns: 1.12fr .82fr .92fr;
  min-height: 680px;
}
.studio-panel {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}
.studio-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.65) contrast(1.1) brightness(.74);
}
.studio-text > img { position: absolute; inset: 0; }
.studio-text > img { object-position: left center; }
.studio-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,11,9,.88), rgba(11,11,9,.36));
}
.studio-text > div {
  position: relative;
  z-index: 2;
  max-width: 410px;
  padding: 78px var(--pad);
}
.studio h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: .95;
}
.studio p:not(.eyebrow) {
  max-width: 360px;
  color: var(--fog);
  line-height: 1.7;
}
.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 72px;
  align-items: center;
  padding: 22px var(--pad) 34px;
  color: var(--warm-gray);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-top: 1px solid rgba(242,238,231,.1);
}
.footer nav {
  display: flex;
  gap: clamp(24px, 5vw, 78px);
}

.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--slow), transform var(--slow);
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes title-reveal { to { clip-path: inset(0 0 0 0); } }
@keyframes rock-rise {
  from { opacity: 0; transform: translate(-50%, -36%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
@keyframes drift {
  from { margin-top: -10px; }
  to { margin-top: 16px; }
}
@keyframes arch-shift {
  from { transform: translateX(-8px); }
  to { transform: translateX(10px); }
}
@keyframes debris {
  from { transform: translate(0,0) rotate(0deg); }
  to { transform: translate(14px,-18px) rotate(2deg); }
}
@keyframes water-breathe {
  from { transform: scale(1.02); }
  to { transform: scale(1.055); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translate(-50%, -42%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
@keyframes fade-left {
  from { opacity: 0; transform: translateX(32px); }
  to { opacity: .88; transform: translateX(0); }
}
@keyframes cliff-reveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

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

@media (max-width: 900px) {
  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
  }
  .nav { display: none; }
  .talk-link { font-size: 9px; }
  .hero {
    min-height: 920px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .hero-copy {
    padding: 110px 24px 0;
    max-width: none;
  }
  .hero h1 { font-size: clamp(68px, 18vw, 104px); line-height: .92; }
  .hero-copy p { max-width: 300px; margin-top: 26px; }
  .scroll-cue, .page-index, .hero-cliff, .hero-debris { display: none; }
  .moon { left: 52%; top: 42%; width: 58vw; }
  .hero-rock { left: 50%; top: 57%; width: 72vw; }
  .hero-person { left: 51%; top: 47%; width: 19vw; }
  .hero-arch { right: -7%; top: 43%; width: 38vw; opacity: .66; }
  .showreel { left: 24px; right: auto; bottom: 34px; }
  .featured {
    grid-template-columns: 1fr;
  }
  .featured-copy { padding: 54px 24px 34px; }
  .featured-visual { min-height: 340px; }
  .works { padding: 54px 24px 64px; }
  .work-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
  }
  .work-card {
    min-width: min(78vw, 360px);
    scroll-snap-align: start;
  }
  .section-head { margin-bottom: 24px; }
  .studio {
    grid-template-columns: 1fr;
  }
  .studio-panel { min-height: 460px; }
  .studio-text > div { padding: 58px 24px; }
  .footer {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px 24px 42px;
  }
  .footer nav { justify-content: space-between; gap: 18px; }
}

@media (max-width: 520px) {
  .brand { font-size: 15px; letter-spacing: .36em; }
  .talk-link { gap: 8px; }
  .hero { min-height: 820px; }
  .hero-bg { object-position: 52% center; }
  .hero h1 { font-size: clamp(58px, 17.5vw, 82px); }
  .featured-visual { min-height: 290px; }
  .section-number { font-size: 88px; }
  .text-cta.dark { display: none; }
  .studio h2 { font-size: 42px; }
}

.page-main {
  min-height: 100svh;
  background: var(--black);
  color: var(--white);
}
.page-hero {
  min-height: 72svh;
  display: grid;
  grid-template-columns: minmax(0, .92fr) 1.08fr;
  gap: clamp(42px, 7vw, 110px);
  align-items: end;
  padding: 132px var(--pad) 86px;
  border-bottom: 1px solid rgba(242,238,231,.1);
}
.page-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(70px, 8.8vw, 138px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.page-lede {
  max-width: 380px;
  margin: 30px 0 0;
  color: var(--fog);
  font-size: 15px;
  line-height: 1.7;
}
.page-visual {
  height: clamp(420px, 54vh, 640px);
  overflow: hidden;
  background: var(--charcoal);
}
.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.68) contrast(1.08) brightness(.82);
}
.page-band {
  padding: clamp(70px, 9vw, 128px) var(--pad);
}
.page-band.light {
  background: var(--white);
  color: var(--charcoal);
}
.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 72px);
}
.project-list .work-meta { color: inherit; }
.project-list .image-wrap { aspect-ratio: 1.55; }
.split-showcase {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.split-copy h2,
.journal-card h2,
.info-card h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.6vw, 88px);
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.split-copy p,
.journal-card p,
.info-card p {
  max-width: 440px;
  color: var(--fog);
  line-height: 1.75;
}
.light .journal-card p,
.light .info-card p { color: #403d37; }
.image-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.image-duo img,
.wide-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(.68) contrast(1.08) brightness(.82);
}
.wide-image {
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 44px);
}
.journal-card img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  margin-bottom: 24px;
  filter: saturate(.65) contrast(1.08) brightness(.82);
}
.journal-card h2 {
  font-size: clamp(30px, 3.4vw, 52px);
}
.meta-row {
  display: flex;
  gap: 18px;
  margin-bottom: 16px;
  color: var(--beige);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(242,238,231,.12);
}
.info-card {
  min-height: 260px;
  padding: 34px;
  background: var(--black);
}
.project-essay {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) 1fr;
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}
.project-essay p {
  color: var(--fog);
  font-size: 17px;
  line-height: 1.8;
  max-width: 720px;
}

@media (max-width: 900px) {
  .page-hero,
  .split-showcase,
  .project-essay {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 112px 24px 62px;
  }
  .page-title {
    font-size: clamp(62px, 17vw, 108px);
  }
  .page-band {
    padding: 58px 24px;
  }
  .project-list,
  .journal-grid,
  .info-grid,
  .image-duo {
    grid-template-columns: 1fr;
  }
  .page-visual { min-height: 380px; }
  .page-visual { height: 340px; }
  .image-duo img,
  .wide-image img { min-height: 340px; }
}
