:root {
  --paper: #f2f0eb;
  --paper-deep: #e7e2da;
  --ink: #11110f;
  --muted: #747069;
  --line: rgba(17, 17, 15, 0.19);
  --white: #faf9f5;
  --new-york: "New York", "New York Small", "New York Medium", "New York Large", "Iowan Old Style", Baskerville, "Times New Roman", Georgia, serif;
  --serif: var(--new-york);
  --sans: var(--new-york);
  --page: min(1540px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--paper); background: var(--ink); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.88'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  color: var(--ink);
  background: rgba(242, 240, 235, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, background .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 600;
}
.logo-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.desktop-nav { display: flex; gap: 34px; align-items: center; }
.desktop-nav a,
.menu-trigger {
  position: relative;
  border: 0;
  padding: 5px 0;
  background: none;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-trigger { display: none; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  visibility: hidden;
  opacity: 0;
  background: var(--ink);
  color: var(--paper);
  transition: opacity .35s ease, visibility .35s ease;
}
.nav-overlay.open { visibility: visible; opacity: 1; }
.nav-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 100px 7vw 60px;
}
.nav-main a {
  width: max-content;
  color: inherit;
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.035em;
  transition: opacity .2s ease, transform .25s ease;
}
.nav-main a:hover { opacity: .5; transform: translateX(10px); }
.nav-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  padding: 100px 4vw 60px;
  border-left: 1px solid rgba(255,255,255,.15);
}
.nav-side p { max-width: 300px; color: rgba(242,240,235,.65); }
.nav-side a { text-underline-offset: 5px; }

main { overflow: clip; }
.page-shell { width: var(--page); margin-inline: auto; }

.home-hero {
  min-height: 100svh;
  padding: 132px 32px 42px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 4vw;
  align-items: end;
}
.hero-copy { padding-bottom: 5vh; }
.kicker,
.section-label {
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 600;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, .project-title, .nav-main a { font-family: var(--serif); }
.home-hero h1 {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 8vw, 9.7rem);
  line-height: .78;
  font-weight: 400;
  letter-spacing: -.055em;
}
.home-hero h1 em { display: block; color: var(--muted); font-weight: 400; }
.hero-copy > p:not(.kicker) { max-width: 490px; color: var(--muted); }
.hero-cta { display: flex; align-items: center; gap: 26px; margin-top: 40px; }
.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(4px, -3px); }
.hero-media { margin: 0; align-self: stretch; min-height: 560px; position: relative; }
.hero-media img { height: 100%; object-fit: cover; }
.media-meta {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
}

.intro-band {
  padding: 13vw 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-band p {
  max-width: 1250px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 7.5rem);
  line-height: .94;
  letter-spacing: -.035em;
}
.intro-band p span { color: var(--muted); }

.featured-projects { padding: 11vw 32px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 70px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 7rem);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -.035em;
}
.project-stack { display: grid; gap: 10vw; }
.project-feature {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 4vw;
  align-items: end;
}
.project-feature:nth-child(even) { grid-template-columns: .65fr 1.35fr; }
.project-feature:nth-child(even) .project-feature-media { order: 2; }
.project-feature-media { display: block; overflow: hidden; }
.project-feature-media img { aspect-ratio: 4 / 2.7; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.project-feature-media:hover img { transform: scale(1.025); }
.project-feature-copy { padding-bottom: 8px; }
.project-index { display: block; margin-bottom: 28px; color: var(--muted); font-size: 10px; letter-spacing: .16em; }
.project-feature h3 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 4.7vw, 5.8rem);
  line-height: .88;
  font-weight: 400;
  letter-spacing: -.03em;
}
.project-feature p { max-width: 420px; color: var(--muted); }

.page-hero {
  min-height: 61vh;
  padding: 170px 32px 72px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 5vw;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(5rem, 11vw, 13rem);
  line-height: .72;
  font-weight: 400;
  letter-spacing: -.06em;
}
.page-hero-copy { max-width: 430px; color: var(--muted); }
.page-number { display: block; margin-bottom: 25px; color: var(--muted); font-size: 10px; letter-spacing: .15em; }

.projects-archive { padding: 8vw 32px 12vw; }
.project-row {
  display: grid;
  grid-template-columns: 70px minmax(180px, .75fr) 1.25fr auto;
  gap: 30px;
  align-items: center;
  min-height: 155px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.project-row:first-child { border-top: 1px solid var(--line); }
.project-row-index,
.project-row-year { color: var(--muted); font-size: 10px; letter-spacing: .14em; }
.project-row-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 4.3rem);
  line-height: .9;
}
.project-row-summary { max-width: 540px; color: var(--muted); }
.project-row-arrow { font-size: 24px; transition: transform .2s ease; }
.project-row:hover .project-row-arrow { transform: translate(6px,-6px); }
.project-row:hover .project-row-title { font-style: italic; }

.project-detail-hero {
  min-height: 100svh;
  padding: 135px 32px 38px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 5vw;
  align-items: end;
}
.project-detail-copy { padding-bottom: 5vh; }
.project-detail-copy h1 {
  margin-bottom: 32px;
  font-size: clamp(4.8rem, 8vw, 10rem);
  line-height: .76;
  font-weight: 400;
  letter-spacing: -.055em;
}
.project-detail-copy p { max-width: 510px; color: var(--muted); }
.project-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.project-facts dt { margin-bottom: 5px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.project-facts dd { margin: 0; }
.project-cover { margin: 0; height: calc(100svh - 173px); min-height: 560px; }
.project-cover img { height: 100%; object-fit: cover; }
.project-statement {
  padding: 12vw 32px;
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 7vw;
  border-top: 1px solid var(--line);
}
.project-statement p:last-child {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 6rem);
  line-height: 1;
  letter-spacing: -.025em;
}
.project-gallery { padding: 0 32px 12vw; display: grid; gap: 6vw; }
.project-gallery figure { margin: 0; }
.project-gallery figure:nth-child(odd) { width: 72%; }
.project-gallery figure:nth-child(even) { width: 60%; margin-left: auto; }
.project-gallery img { max-height: 90vh; object-fit: cover; }
.project-gallery figcaption { display: flex; justify-content: space-between; padding-top: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.next-project {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 10vw 32px;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
}
.next-project span:first-child { text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }
.next-project strong { display: block; margin-top: 15px; font-family: var(--serif); font-size: clamp(3.2rem, 7vw, 8rem); line-height: .86; font-weight: 400; }
.next-project .arrow { font-size: clamp(3rem, 7vw, 8rem); }

.exhibition-wrap { padding: 8vw 32px 12vw; }
.exhibition-item {
  display: grid;
  grid-template-columns: 90px 1.2fr .8fr auto;
  gap: 28px;
  align-items: start;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}
.exhibition-item:first-child { border-top: 1px solid var(--line); }
.exhibition-item h2 { margin-bottom: 5px; font-size: clamp(1.8rem, 3vw, 3.5rem); line-height: 1; font-weight: 400; }
.exhibition-item p { margin: 0; color: var(--muted); }
.exhibition-type { padding: 7px 10px; border: 1px solid var(--line); border-radius: 100px; text-transform: uppercase; letter-spacing: .12em; font-size: 8px; }

.about-layout {
  padding: 9vw 32px 12vw;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  align-items: start;
}
.about-portrait { position: sticky; top: 112px; }
.about-portrait img { aspect-ratio: 4 / 5; object-fit: cover; }
.about-copy-large {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.022em;
}
.about-body { max-width: 720px; margin-left: auto; }
.about-body p { color: var(--muted); }
.data-section { margin-top: 95px; }
.data-section h2 { margin-bottom: 30px; font-size: 12px; font-family: var(--sans); text-transform: uppercase; letter-spacing: .16em; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 10px 13px; border: 1px solid var(--line); border-radius: 100px; font-size: 11px; }
.publication-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.publication-row:first-of-type { border-top: 1px solid var(--line); }
.publication-row p { margin: 0; color: var(--ink); }
.publication-row span { color: var(--muted); }

.contact-page {
  min-height: 100svh;
  padding: 150px 32px 55px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 5vw;
  align-items: end;
  background: var(--paper-deep);
}
.contact-page h1 {
  margin: 0;
  font-size: clamp(5rem, 10vw, 12rem);
  line-height: .72;
  font-weight: 400;
  letter-spacing: -.06em;
}
.contact-intro { max-width: 520px; }
.contact-intro > p { color: var(--muted); }
.contact-email {
  display: inline-block;
  margin: 35px 0 60px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.6rem);
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}
.contact-list { display: grid; gap: 14px; }
.contact-list a { width: max-content; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
}
.site-footer p { margin: 0; }
.site-footer p:nth-child(2) { text-align: center; }
.site-footer a { justify-self: end; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --page: calc(100vw - 40px); }
  .site-header { height: 72px; padding: 0 20px; }
  .desktop-nav { display: none; }
  .menu-trigger { display: block; }
  .nav-overlay { grid-template-columns: 1fr; }
  .nav-side { display: none; }
  .home-hero,
  .project-detail-hero { grid-template-columns: 1fr; padding: 120px 20px 20px; }
  .hero-copy { padding-bottom: 20px; }
  .hero-media { min-height: 58svh; }
  .home-hero h1 { font-size: clamp(4.2rem, 16vw, 8rem); }
  .intro-band,
  .featured-projects,
  .projects-archive,
  .exhibition-wrap,
  .project-gallery { padding-left: 20px; padding-right: 20px; }
  .page-hero { padding: 150px 20px 55px; grid-template-columns: 1fr; gap: 60px; }
  .project-feature,
  .project-feature:nth-child(even) { grid-template-columns: 1fr; }
  .project-feature:nth-child(even) .project-feature-media { order: 0; }
  .project-feature-copy { max-width: 600px; }
  .project-row { grid-template-columns: 45px 1fr auto; }
  .project-row-summary { display: none; }
  .project-detail-copy { padding-bottom: 0; }
  .project-cover { height: 72svh; min-height: 520px; }
  .project-statement { padding: 100px 20px; grid-template-columns: 1fr; gap: 35px; }
  .project-gallery figure:nth-child(n) { width: 100%; }
  .next-project { padding: 100px 20px; }
  .exhibition-item { grid-template-columns: 65px 1fr auto; }
  .exhibition-location { display: none; }
  .about-layout { padding: 90px 20px 110px; grid-template-columns: 1fr; }
  .about-portrait { position: static; width: 75%; }
  .contact-page { padding: 130px 20px 50px; grid-template-columns: 1fr; gap: 80px; }
}

@media (max-width: 620px) {
  .site-logo span:last-child { display: none; }
  .nav-main { padding: 100px 20px 40px; }
  .nav-main a { font-size: clamp(3.6rem, 19vw, 6rem); }
  .home-hero { min-height: auto; }
  .hero-media { min-height: 64svh; }
  .intro-band { padding-top: 110px; padding-bottom: 110px; }
  .section-head { align-items: start; flex-direction: column; }
  .featured-projects { padding-top: 100px; padding-bottom: 100px; }
  .project-stack { gap: 100px; }
  .project-feature-media img { aspect-ratio: 4/5; }
  .page-hero { min-height: 55vh; }
  .page-hero h1 { font-size: clamp(4rem, 20vw, 7rem); }
  .projects-archive { padding-top: 70px; padding-bottom: 100px; }
  .project-row { min-height: 120px; grid-template-columns: 34px 1fr auto; gap: 14px; }
  .project-detail-copy h1 { font-size: clamp(4rem, 19vw, 7rem); }
  .project-facts { grid-template-columns: 1fr; }
  .project-cover { min-height: 58svh; height: 58svh; }
  .project-gallery { gap: 70px; }
  .exhibition-item { grid-template-columns: 45px 1fr; gap: 16px; }
  .exhibition-type { display: none; }
  .about-portrait { width: 100%; }
  .publication-row { grid-template-columns: 1fr; gap: 4px; }
  .contact-page { min-height: 100svh; }
  .contact-page h1 { font-size: clamp(4.2rem, 20vw, 7rem); }
  .contact-email { font-size: 1.75rem; }
  .site-footer { grid-template-columns: 1fr; gap: 11px; text-align: left; }
  .site-footer p:nth-child(2) { text-align: left; }
  .site-footer a { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Editorial homepage art direction — CSS preview upgrade
   ========================================================= */
:root {
  --black: #0a0a09;
  --black-soft: #121210;
  --cream: #eeeae1;
  --accent: #a78c72;
}

.home-page { background: var(--cream); }
.home-page .site-header {
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(0,0,0,.42), transparent);
  backdrop-filter: none;
}
.home-page .site-header.scrolled {
  color: var(--ink);
  background: rgba(238,234,225,.92);
  border-bottom-color: rgba(17,17,15,.14);
  backdrop-filter: blur(14px);
}
.home-page .logo-dot { background: currentColor; }

.home-hero--editorial {
  position: relative;
  min-height: 100svh;
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
}
.hero-image-wrap,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 35%;
  transform: scale(1.02);
  filter: saturate(.74) contrast(1.08) brightness(.77);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4,4,3,.86) 0%, rgba(4,4,3,.6) 34%, rgba(4,4,3,.08) 68%, rgba(4,4,3,.22) 100%),
    linear-gradient(0deg, rgba(4,4,3,.62) 0%, transparent 38%);
}
.hero-rail {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 23px;
  display: flex;
  width: min(390px, 38vw);
  justify-content: space-between;
  transform: translate(47%, -50%) rotate(90deg);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 8px;
  font-weight: 600;
}
.hero-copy--overlay {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(1540px, calc(100vw - 128px));
  margin: 0 auto;
  padding: 150px 0 68px;
}
.hero-copy--overlay .kicker {
  position: absolute;
  top: 154px;
  left: 0;
  color: rgba(238,234,225,.68);
}
.home-hero--editorial h1 {
  max-width: 1120px;
  margin: 0 0 45px;
  font-family: var(--serif);
  font-size: clamp(5.4rem, 10.2vw, 11.8rem);
  line-height: .75;
  letter-spacing: -.058em;
  font-weight: 400;
  text-wrap: balance;
}
.home-hero--editorial h1 em {
  display: block;
  margin-left: 11vw;
  color: rgba(238,234,225,.62);
  font-weight: 400;
}
.hero-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 500px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 5vw;
  padding-top: 27px;
  border-top: 1px solid rgba(238,234,225,.35);
}
.hero-bottom > p {
  margin: 0;
  color: rgba(238,234,225,.72);
  font-size: 13px;
  line-height: 1.7;
}
.hero-copy--overlay .hero-cta { margin: 0; }
.text-link--light { color: var(--cream); }
.hero-caption {
  position: absolute;
  z-index: 2;
  right: 44px;
  bottom: 40px;
  display: grid;
  gap: 5px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 8px;
  color: rgba(238,234,225,.72);
}
.scroll-mark {
  position: absolute;
  z-index: 2;
  left: 31px;
  bottom: 39px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 8px;
}
.scroll-mark i { position: relative; width: 52px; height: 1px; overflow: hidden; background: rgba(238,234,225,.35); }
.scroll-mark i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line { 0% { transform: translateX(-105%); } 55%,100% { transform: translateX(105%); } }

.statement-grid {
  display: grid;
  grid-template-columns: .34fr 1.16fr .35fr;
  gap: 4vw;
  align-items: start;
  padding: 12vw 5.2vw 13vw;
  border-bottom: 1px solid var(--line);
}
.statement-display {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.7vw, 7rem);
  line-height: .96;
  letter-spacing: -.038em;
}
.statement-display em { color: var(--muted); font-weight: 400; }
.statement-note {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 15px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.statement-note span { color: var(--ink); font-size: 9px; letter-spacing: .12em; }
.statement-note p { margin: 0; }

.featured-projects--dark {
  position: relative;
  padding: 11vw 5.2vw 13vw;
  background: var(--black-soft);
  color: var(--cream);
}
.featured-projects--dark::before {
  content: "SELECTED / WORKS";
  position: absolute;
  top: 42%;
  right: -1.4em;
  color: rgba(238,234,225,.025);
  font-family: var(--serif);
  font-size: 17vw;
  line-height: .7;
  transform: rotate(90deg);
  pointer-events: none;
}
.section-head--light { margin-bottom: 10vw; }
.section-head--light .section-label { color: rgba(238,234,225,.48); }
.section-head--light h2 {
  font-size: clamp(4.3rem, 8vw, 9.5rem);
  line-height: .75;
}
.project-stack--editorial { gap: 15vw; }
.project-feature--editorial {
  grid-template-columns: minmax(0,1.45fr) minmax(260px,.55fr);
  gap: 6vw;
  align-items: center;
}
.project-feature--editorial:nth-child(even) { grid-template-columns: minmax(260px,.55fr) minmax(0,1.45fr); }
.project-feature--editorial .project-feature-media {
  position: relative;
  background: #25221f;
}
.project-feature--editorial .project-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(238,234,225,.13);
  pointer-events: none;
}
.project-feature--editorial .project-feature-media img {
  aspect-ratio: 1.42 / 1;
  filter: saturate(.73) contrast(1.04);
}
.project-feature--editorial:nth-child(2) .project-feature-media img { aspect-ratio: 1.14 / 1; }
.project-feature--editorial:nth-child(3) .project-feature-media img { aspect-ratio: 1.52 / 1; }
.image-number {
  position: absolute;
  z-index: 2;
  top: 19px;
  left: 21px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(238,234,225,.45);
  border-radius: 50%;
  color: var(--cream);
  font-size: 9px;
}
.project-feature--editorial .project-index { color: rgba(238,234,225,.46); }
.project-feature--editorial h3 {
  margin-bottom: 26px;
  color: var(--cream);
  font-size: clamp(4rem, 6.3vw, 7.7rem);
  line-height: .72;
}
.project-feature--editorial h3 em { color: rgba(238,234,225,.52); font-weight: 400; }
.project-feature--editorial p { color: rgba(238,234,225,.55); line-height: 1.75; }

.home-about {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 8vw;
  align-items: center;
  padding: 12vw 8vw;
  overflow: hidden;
}
.home-about::before {
  content: "ABOUT";
  position: absolute;
  right: -1vw;
  top: -3vw;
  color: rgba(17,17,15,.035);
  font-family: var(--serif);
  font-size: 24vw;
  line-height: 1;
}
.home-about-image { position: relative; z-index: 1; width: 85%; }
.home-about-image::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid var(--line);
  z-index: -1;
}
.home-about-image img { aspect-ratio: 4/5; object-fit: cover; filter: saturate(.65) contrast(1.06); }
.home-about-copy { position: relative; z-index: 1; max-width: 720px; }
.home-about-copy h2 {
  margin-bottom: 35px;
  font-size: clamp(3.2rem, 5vw, 6.5rem);
  line-height: .91;
  font-weight: 400;
  letter-spacing: -.035em;
}
.home-about-copy > p:not(.section-label) { max-width: 520px; margin-bottom: 35px; color: var(--muted); }
.home-about-signature {
  position: absolute;
  z-index: 2;
  left: 42%;
  bottom: 8vw;
  font-family: var(--serif);
  font-size: clamp(2rem,4vw,5rem);
  font-style: italic;
  transform: rotate(-8deg);
}

.contact-banner {
  padding: 9vw 5.2vw 10vw;
  background: var(--accent);
  color: #13110f;
}
.contact-banner .section-label { margin-bottom: 5vw; }
.contact-banner-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  color: inherit;
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.5vw, 11rem);
  line-height: .78;
  letter-spacing: -.05em;
}
.contact-banner-link em { font-weight: 400; color: rgba(19,17,15,.52); }
.contact-banner-link span { font-family: var(--sans); font-size: .36em; transition: transform .25s ease; }
.contact-banner-link:hover span { transform: translate(8px,-8px); }

.home-page .site-footer { color: var(--cream); background: var(--black); border-color: rgba(238,234,225,.15); }

@media (max-width: 1080px) {
  .hero-copy--overlay { width: calc(100vw - 40px); padding: 130px 0 36px; }
  .hero-copy--overlay .kicker { top: 124px; }
  .home-hero--editorial h1 { font-size: clamp(4.5rem, 14vw, 8rem); }
  .home-hero--editorial h1 em { margin-left: 5vw; }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-caption, .scroll-mark, .hero-rail { display: none; }
  .statement-grid { grid-template-columns: 1fr; padding: 110px 20px; }
  .statement-grid .section-label { margin-bottom: 20px; }
  .statement-note { max-width: 420px; margin-left: auto; }
  .featured-projects--dark { padding: 110px 20px; }
  .project-feature--editorial,
  .project-feature--editorial:nth-child(even) { grid-template-columns: 1fr; gap: 42px; }
  .project-feature--editorial:nth-child(even) .project-feature-media { order: 0; }
  .project-feature--editorial .project-feature-copy { width: min(620px,100%); }
  .home-about { grid-template-columns: 1fr; padding: 120px 20px; }
  .home-about-image { width: min(620px, 86%); }
  .home-about-signature { position: static; margin: -30px 0 0 20px; }
  .contact-banner { padding: 100px 20px; }
}

@media (max-width: 620px) {
  .home-page .site-header { background: linear-gradient(to bottom, rgba(0,0,0,.5), transparent); }
  .home-page .site-header.scrolled { background: rgba(238,234,225,.94); }
  .hero-image-wrap img { object-position: 58% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,4,3,.88) 0%, rgba(4,4,3,.36) 56%, rgba(4,4,3,.16) 100%); }
  .hero-copy--overlay { min-height: 100svh; justify-content: flex-end; padding-bottom: 30px; }
  .hero-copy--overlay .kicker { position: static; margin-bottom: 25px; }
  .home-hero--editorial h1 { font-size: clamp(4.2rem, 19vw, 6.4rem); line-height: .76; }
  .home-hero--editorial h1 em { margin-left: 0; }
  .hero-bottom { padding-top: 19px; }
  .hero-bottom > p { font-size: 12px; }
  .hero-copy--overlay .hero-cta { align-items: flex-start; flex-direction: column; gap: 17px; }
  .statement-display { font-size: clamp(2.7rem, 12vw, 4.3rem); }
  .statement-note { margin: 25px 0 0; }
  .section-head--light h2 { font-size: clamp(4rem, 18vw, 6.2rem); }
  .project-feature--editorial .project-feature-media img,
  .project-feature--editorial:nth-child(2) .project-feature-media img,
  .project-feature--editorial:nth-child(3) .project-feature-media img { aspect-ratio: 4/5; }
  .project-feature--editorial h3 { font-size: clamp(4rem, 18vw, 6rem); }
  .home-about-image { width: calc(100% - 18px); }
  .home-about-copy h2 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .contact-banner-link { display: block; font-size: clamp(4rem, 17vw, 6rem); }
  .contact-banner-link span { display: block; margin-top: 38px; }
}


/* Responsive refinements for phones and tablets */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-size: clamp(13px, 0.82rem + 0.12vw, 15px);
  -webkit-font-smoothing: antialiased;
}

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

.site-logo {
  white-space: nowrap;
}

.menu-trigger,
.desktop-nav a,
.text-link,
.contact-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.contact-email {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 621px) and (max-width: 1080px) {
  :root { --page: calc(100vw - 64px); }

  .site-header {
    padding-right: max(32px, env(safe-area-inset-right));
    padding-left: max(32px, env(safe-area-inset-left));
  }

  .hero-copy--overlay {
    width: calc(100vw - 80px);
    padding-bottom: 52px;
  }

  .home-hero--editorial h1 {
    max-width: 900px;
    font-size: clamp(5.2rem, 11.5vw, 8.5rem);
  }

  .statement-grid,
  .featured-projects--dark,
  .home-about,
  .contact-banner {
    padding-right: 40px;
    padding-left: 40px;
  }

  .project-feature--editorial .project-feature-media img,
  .project-feature--editorial:nth-child(2) .project-feature-media img,
  .project-feature--editorial:nth-child(3) .project-feature-media img {
    aspect-ratio: 1.35 / 1;
  }

  .page-hero,
  .projects-archive,
  .exhibition-wrap,
  .project-gallery,
  .about-layout,
  .project-statement,
  .next-project,
  .contact-page {
    padding-right: 40px;
    padding-left: 40px;
  }

  .about-portrait {
    width: min(620px, 78%);
  }

  .contact-page {
    gap: 64px;
  }
}

@media (max-width: 620px) {
  :root { --page: calc(100vw - 32px); }

  .site-header {
    height: 64px;
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .site-logo {
    max-width: calc(100vw - 96px);
    gap: 8px;
    overflow: hidden;
    font-size: 10px;
    letter-spacing: .08em;
    text-overflow: ellipsis;
  }

  .site-logo span:last-child {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-dot {
    width: 7px;
    min-width: 7px;
    height: 7px;
  }

  .menu-trigger {
    min-width: 52px;
    justify-content: flex-end;
  }

  .hero-copy--overlay {
    width: calc(100vw - 32px);
    padding-top: 104px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }

  .hero-copy--overlay .kicker {
    max-width: 270px;
    font-size: 9px;
    letter-spacing: .13em;
    line-height: 1.55;
  }

  .home-hero--editorial h1 {
    max-width: 100%;
    font-size: clamp(3.75rem, 17.5vw, 5.8rem);
    line-height: .79;
    letter-spacing: -.048em;
  }

  .hero-bottom {
    gap: 22px;
  }

  .hero-copy--overlay .hero-cta {
    width: 100%;
  }

  .statement-grid,
  .featured-projects--dark,
  .home-about,
  .contact-banner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-head {
    margin-bottom: 56px;
  }

  .section-head--light h2,
  .project-feature--editorial h3,
  .home-about-copy h2,
  .contact-banner-link,
  .page-hero h1,
  .project-detail-copy h1,
  .contact-page h1 {
    overflow-wrap: anywhere;
  }

  .project-feature--editorial,
  .project-feature--editorial:nth-child(even) {
    gap: 28px;
  }

  .project-feature--editorial h3 {
    margin-bottom: 20px;
    font-size: clamp(3.5rem, 16.5vw, 5.4rem);
  }

  .home-about {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .home-about-image {
    width: calc(100% - 12px);
  }

  .home-about-image::before {
    inset: -12px 12px 12px -12px;
  }

  .contact-banner-link {
    font-size: clamp(3.5rem, 15.8vw, 5.4rem);
  }

  .page-hero,
  .projects-archive,
  .exhibition-wrap,
  .project-gallery,
  .about-layout,
  .project-statement,
  .next-project,
  .contact-page {
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-hero {
    padding-top: 116px;
  }

  .project-row {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .project-row h2 {
    overflow-wrap: anywhere;
  }

  .exhibition-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-page {
    padding-top: 110px;
    gap: 54px;
  }

  .contact-email {
    margin-top: 24px;
    margin-bottom: 44px;
    font-size: clamp(1.15rem, 6vw, 1.75rem);
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (max-width: 420px) {
  .nav-main a {
    font-size: clamp(3.15rem, 17vw, 4.6rem);
  }

  .home-hero--editorial h1 {
    font-size: clamp(3.4rem, 16.8vw, 4.8rem);
  }

  .statement-display {
    font-size: clamp(2.45rem, 11.5vw, 3.8rem);
  }

  .section-head--light h2 {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .contact-banner-link {
    font-size: clamp(3.15rem, 15.5vw, 4.8rem);
  }
}


/* =========================================================
   Dark theme update with Blue Hands monochrome cover
   ========================================================= */
:root {
  --paper: #090909;
  --paper-deep: #121212;
  --ink: #f4f1ea;
  --muted: #b0aaa1;
  --line: rgba(244, 241, 234, 0.14);
  --white: #ffffff;
  --black: #050505;
  --black-soft: #0d0d0d;
  --cream: #f4f1ea;
  --accent: #1b1b1b;
}

body, .home-page {
  background: var(--paper);
  color: var(--ink);
}

a { color: inherit; }
::selection { color: var(--paper); background: var(--ink); }

.site-header {
  color: var(--ink);
  background: rgba(9, 9, 9, 0.88);
}
.site-header.scrolled {
  background: rgba(9, 9, 9, 0.94);
  border-bottom-color: var(--line);
}
.home-page .site-header {
  color: var(--cream);
  background: linear-gradient(to bottom, rgba(0,0,0,.68), rgba(0,0,0,.18));
}
.home-page .site-header.scrolled {
  color: var(--cream);
  background: rgba(9,9,9,.94);
  border-bottom-color: var(--line);
}
.logo-dot { background: currentColor; }
.skip-link { background: var(--ink); color: var(--paper); }

.nav-overlay { background: #000; color: var(--cream); }
.nav-side { border-left-color: rgba(255,255,255,.10); }
.nav-side p { color: rgba(244,241,234,.6); }

.home-hero--editorial { background: var(--black); color: var(--cream); }
.hero-image-wrap img { filter: saturate(.55) contrast(1.08) brightness(.62); }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.68) 34%, rgba(0,0,0,.14) 70%, rgba(0,0,0,.28) 100%),
    linear-gradient(0deg, rgba(0,0,0,.72) 0%, transparent 42%);
}

.statement-grid,
.page-hero,
.project-statement,
.projects-archive,
.exhibition-wrap,
.about-layout,
.site-footer {
  background: var(--paper);
}
.statement-grid, .page-hero, .project-statement { border-bottom-color: var(--line); }
.home-about::before { color: rgba(244,241,234,.03); }
.home-about-image::before { border-color: var(--line); }
.home-about-image img { filter: grayscale(1) contrast(1.05); }
.contact-banner { background: #101010; color: var(--cream); border-top: 1px solid var(--line); }
.contact-banner-link em { color: rgba(244,241,234,.52); }
.featured-projects--dark { background: #050505; color: var(--cream); }
.project-feature--editorial .project-feature-media { background: #111; }
.project-feature--editorial .project-feature-media::after { border-color: rgba(244,241,234,.12); }
.project-feature--editorial .project-feature-media img { filter: grayscale(.15) contrast(1.04) brightness(.92); }
.blue-hands-card-cover { filter: grayscale(1) contrast(1.08) brightness(.88) !important; }
.project-row, .exhibition-item, .publication-row, .project-facts, .site-footer { border-color: var(--line); }
.publication-row p, .statement-note span { color: var(--ink); }
.chip, .exhibition-type { border-color: var(--line); background: rgba(255,255,255,.015); }
.contact-page { background: var(--paper-deep); }
.project-cover.is-monochrome img,
.monochrome-cover {
  filter: grayscale(1) contrast(1.12) brightness(.92);
}
.project-cover.is-monochrome::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244,241,234,.08);
  pointer-events: none;
}
.project-cover { position: relative; background: #000; }
.project-gallery img { filter: saturate(.95) contrast(1.02); }
.next-project { color: var(--cream); background: #000; }
.home-page .site-footer { color: var(--cream); background: #000; border-color: var(--line); }

@media (max-width: 620px) {
  .home-page .site-header { background: linear-gradient(to bottom, rgba(0,0,0,.72), transparent); }
  .home-page .site-header.scrolled { background: rgba(9,9,9,.96); }
}


/* Individual portrait explanations */
.project-gallery figcaption.gallery-caption {
  display: block;
  padding-top: 18px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  font-size: inherit;
  border-top: 1px solid var(--line);
  margin-top: 12px;
}
.gallery-caption-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 10px;
}
.gallery-caption-head strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.3rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
}
.gallery-caption-index,
.gallery-caption-head > span:last-child,
.gallery-caption small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 9px;
}
.gallery-caption p {
  max-width: 720px;
  margin: 0 0 8px 56px;
  color: var(--muted);
  line-height: 1.65;
}
.gallery-caption small {
  display: block;
  margin-left: 56px;
}
@media (max-width: 620px) {
  .project-gallery figcaption.gallery-caption { padding-top: 14px; margin-top: 8px; }
  .gallery-caption-head { grid-template-columns: 30px minmax(0,1fr) auto; gap: 10px; }
  .gallery-caption-head strong { font-size: 1.55rem; }
  .gallery-caption p,
  .gallery-caption small { margin-left: 40px; }
  .gallery-caption p { font-size: 12px; }
}


/* Global black and white image treatment */
.hero-image-wrap img,
.project-feature--editorial .project-feature-media img,
.project-cover img,
.project-gallery img,
.about-portrait img,
.home-about-image img {
  filter: grayscale(1) contrast(1.08) brightness(.92);
}

.project-feature--editorial .project-feature-media img:hover,
.project-gallery img:hover,
.project-cover img:hover {
  filter: grayscale(1) contrast(1.1) brightness(.96);
}


/* Compact typography and image sizing update */
.statement-grid {
  padding: 9vw 5.2vw 10vw;
}
.statement-display {
  font-size: clamp(2.4rem, 4.6vw, 5.4rem);
  line-height: 0.98;
  max-width: 15ch;
}
.statement-note {
  max-width: 260px;
}

.project-detail-hero {
  min-height: auto;
  align-items: center;
}
.project-detail-copy h1 {
  font-size: clamp(3.6rem, 6.2vw, 7rem);
  margin-bottom: 22px;
}
.project-detail-copy p {
  max-width: 420px;
}
.project-cover {
  height: 62svh;
  min-height: 400px;
  max-height: 760px;
}
.project-statement {
  padding: 8vw 32px;
  gap: 4vw;
  grid-template-columns: .32fr 1fr;
}
.project-statement p:last-child {
  font-size: clamp(1.8rem, 3.3vw, 4rem);
  line-height: 1.04;
  max-width: 760px;
}
.project-gallery {
  gap: 4.8vw;
}
.project-gallery figure:nth-child(odd) { width: 62%; }
.project-gallery figure:nth-child(even) { width: 52%; }
.project-gallery img {
  max-height: 76svh;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .statement-grid { padding: 88px 20px 92px; }
  .statement-display { font-size: clamp(2.2rem, 6vw, 4.2rem); max-width: 16ch; }
  .project-detail-copy h1 { font-size: clamp(3.2rem, 8vw, 5.8rem); }
  .project-cover { height: 54svh; min-height: 340px; }
  .project-statement { padding: 72px 20px; }
  .project-statement p:last-child { font-size: clamp(1.6rem, 4vw, 3rem); }
  .project-gallery figure:nth-child(odd),
  .project-gallery figure:nth-child(even) { width: 100%; }
  .project-gallery img { max-height: 60svh; }
}

@media (max-width: 620px) {
  .statement-grid { padding: 72px 20px 78px; }
  .statement-display { font-size: clamp(1.8rem, 8vw, 3rem); line-height: 1.02; max-width: 100%; }
  .statement-note { max-width: 100%; }
  .project-detail-hero { padding: 108px 20px 20px; gap: 24px; }
  .project-detail-copy h1 { font-size: clamp(2.6rem, 11vw, 4rem); }
  .project-cover { height: 40svh; min-height: 240px; }
  .project-statement { padding: 52px 20px; }
  .project-statement p:last-child { font-size: clamp(1.28rem, 6vw, 2rem); line-height: 1.08; }
  .project-gallery { gap: 46px; }
  .project-gallery img { max-height: 44svh; }
}


/* Preserve original photography: dark UI only, no image colour treatment */
.hero-image-wrap img,
.project-feature--editorial .project-feature-media img,
.blue-hands-card-cover,
.project-cover img,
.project-cover.is-monochrome img,
.monochrome-cover,
.project-gallery img,
.about-portrait img,
.home-about-image img,
img {
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
}

.project-feature--editorial .project-feature-media img:hover,
.project-gallery img:hover,
.project-cover img:hover {
  filter: none !important;
  -webkit-filter: none !important;
}


/* Final image policy: only homepage wallpaper is black and white */
img,
.project-feature--editorial .project-feature-media img,
.blue-hands-card-cover,
.project-cover img,
.project-cover.is-monochrome img,
.monochrome-cover,
.project-gallery img,
.about-portrait img,
.home-about-image img {
  filter: none !important;
  -webkit-filter: none !important;
}

.home-page .hero-image-wrap img {
  filter: grayscale(1) contrast(1.06) brightness(.74) !important;
  -webkit-filter: grayscale(1) contrast(1.06) brightness(.74) !important;
}


/* Homepage-only monochrome photography
   Project detail pages remain in original colour. */
.home-page .hero-image-wrap img,
.home-page .project-feature--editorial .project-feature-media img,
.home-page .home-about-image img {
  filter: grayscale(1) contrast(1.06) brightness(.82) !important;
  -webkit-filter: grayscale(1) contrast(1.06) brightness(.82) !important;
}

.home-page .project-feature--editorial .project-feature-media img:hover {
  filter: grayscale(1) contrast(1.10) brightness(.88) !important;
  -webkit-filter: grayscale(1) contrast(1.10) brightness(.88) !important;
}


/* Updated homepage hero image: full-bleed fitted desaturated artwork */
.home-page .hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  filter: grayscale(1) saturate(.1) contrast(1.03) brightness(.72) !important;
  -webkit-filter: grayscale(1) saturate(.1) contrast(1.03) brightness(.72) !important;
}

@media (max-width: 620px) {
  .home-page .hero-image-wrap img {
    object-position: center center;
  }
}


/* White header divider and refined motion */
.home-page .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}
.home-page .site-header.scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.38);
}

/* Anchor scrolling is eased in JavaScript for a softer portfolio feel. */
html { scroll-behavior: auto; }
.reveal {
  transition: opacity .85s cubic-bezier(.22,.61,.36,1),
              transform .85s cubic-bezier(.22,.61,.36,1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
\n\n/* Still Here coming-soon project */\n.coming-soon-media {\n  text-decoration: none;\n  color: var(--cream);\n  background: #0b0b0b !important;\n  border: 1px solid rgba(244,241,234,.14);\n}\n.coming-soon-visual {\n  min-height: 520px;\n  aspect-ratio: 1.42 / 1;\n  display: flex;\n  flex-direction: column;\n  justify-content: space-between;\n  padding: clamp(24px, 4vw, 58px);\n  background:\n    radial-gradient(circle at 76% 20%, rgba(255,255,255,.055), transparent 28%),\n    linear-gradient(135deg, #050505 0%, #131313 58%, #080808 100%);\n  overflow: hidden;\n}\n.coming-soon-visual::after {\n  content: "";\n  position: absolute;\n  inset: 0;\n  background: repeating-linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,.018) 12% 12.1%);\n  pointer-events: none;\n}\n.coming-soon-eyebrow, .coming-soon-place {\n  position: relative;\n  z-index: 1;\n  text-transform: uppercase;\n  letter-spacing: .2em;\n  font-size: 9px;\n  color: rgba(244,241,234,.62);\n}\n.coming-soon-visual strong {\n  position: relative;\n  z-index: 1;\n  align-self: center;\n  font-family: var(--serif);\n  font-size: clamp(5rem, 10vw, 12rem);\n  line-height: .68;\n  font-weight: 400;\n  letter-spacing: -.06em;\n  text-align: center;\n  color: var(--cream);\n}\n.project-cover--coming-soon {\n  display: grid;\n  background: #050505;\n}\n.coming-soon-visual--detail {\n  width: 100%;\n  height: 100%;\n  min-height: 100%;\n  aspect-ratio: auto;\n}\n.coming-soon-visual--detail strong {\n  font-size: clamp(5rem, 9vw, 10rem);\n}\n\n@media (max-width: 1080px) {\n  .coming-soon-visual { min-height: 420px; }\n}\n@media (max-width: 620px) {\n  .coming-soon-visual { min-height: 360px; aspect-ratio: 4 / 5; }\n  .coming-soon-visual strong { font-size: clamp(4rem, 20vw, 6.2rem); }\n  .project-cover--coming-soon .coming-soon-visual { aspect-ratio: auto; min-height: 100%; }\n}\n

/* The Lodge at Handsworth Park — long-form photographic story */
.story-article {
  width: min(1220px, calc(100vw - 64px));
  margin: 0 auto;
  padding: 7vw 0 12vw;
}
.story-deck {
  display: grid;
  grid-template-columns: .34fr 1fr;
  gap: 6vw;
  padding: 0 0 7vw;
  border-bottom: 1px solid var(--line);
}
.story-date {
  margin: -18px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
}
.story-deck-copy {
  max-width: 780px;
}
.story-deck-copy p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.55;
  color: var(--muted);
}
.story-deck-copy .story-intro {
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  line-height: 1.18;
}
.story-section {
  display: grid;
  grid-template-columns: .28fr 1fr;
  gap: 6vw;
  padding: 7vw 0 0;
}
.story-section-head {
  position: sticky;
  top: 110px;
  align-self: start;
}
.story-section-head span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .15em;
}
.story-section-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: .95;
  font-weight: 400;
}
.story-section-body {
  min-width: 0;
}
.story-copy {
  max-width: 760px;
}
.story-copy p {
  margin-bottom: 1.35em;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  line-height: 1.62;
}
.story-media {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}
.story-media--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.story-media figure {
  margin: 0;
}
.story-media img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #050505;
  filter: none !important;
  -webkit-filter: none !important;
}
.story-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: .9rem;
  font-style: italic;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .story-article { width: calc(100vw - 40px); padding: 80px 0 100px; }
  .story-deck, .story-section { grid-template-columns: 1fr; gap: 30px; }
  .story-section { padding-top: 80px; }
  .story-section-head { position: static; }
}

@media (max-width: 620px) {
  .story-article { width: calc(100vw - 32px); padding: 62px 0 80px; }
  .story-deck { padding-bottom: 56px; }
  .story-deck-copy .story-intro { font-size: 1.75rem; }
  .story-deck-copy p, .story-copy p { font-size: 1.05rem; }
  .story-section { padding-top: 64px; }
  .story-section-head h2 { font-size: 2.4rem; }
  .story-media--pair { grid-template-columns: 1fr; }
  .story-media img { max-height: none; }
}
