:root {
  --bg: #ffffff;
  --fg: #000000;
  --soft: #6f6f6f;
  --line: #efefef;
  --mx: 50%;
  --my: 50%;
  --dx: 0px;
  --dy: 0px;
  --pulse: 0px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
}

body {
  font-family: "Alumni Sans", "Avenir Next", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 100;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

html.is-loading body {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms ease, visibility 320ms ease;
}

html.is-loading .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__mark {
  letter-spacing: 0.3em;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: #161616;
  text-transform: uppercase;
  animation: loaderPulse 680ms ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from {
    opacity: 0.42;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.atmosphere {
  position: fixed;
  inset: -12vmax;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.atmosphere__shadow {
  position: absolute;
  inset: 0;
  opacity: 1;
  will-change: transform;
  transition: transform 900ms ease;
}

.atmosphere__shadow--left {
  background:
    radial-gradient(
      46% 84% at -14% 52%,
      rgba(0, 0, 0, 0.34),
      rgba(0, 0, 0, 0.15) 34%,
      rgba(0, 0, 0, 0) 74%
    ),
    linear-gradient(
      102deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0) 40%
    );
  filter: blur(34px);
  transform: translate3d(
    calc(var(--dx) * -0.66),
    calc(var(--dy) * -0.3 + var(--pulse) * 0.3),
    0
  );
}

.atmosphere__shadow--right {
  background:
    radial-gradient(
      50% 80% at 114% 52%,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.13) 33%,
      rgba(0, 0, 0, 0) 74%
    ),
    linear-gradient(
      -104deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0) 40%
    );
  filter: blur(34px);
  transform: translate3d(
    calc(var(--dx) * 0.68),
    calc(var(--dy) * -0.36 - var(--pulse) * 0.24),
    0
  );
}

.atmosphere__shadow--top {
  background:
    radial-gradient(
      74% 42% at 50% -20%,
      rgba(0, 0, 0, 0.26),
      rgba(0, 0, 0, 0.1) 30%,
      rgba(0, 0, 0, 0) 74%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0) 26%
    );
  filter: blur(30px);
  transform: translate3d(
    calc(var(--dx) * 0.24),
    calc(var(--dy) * -0.56 + var(--pulse) * 0.36),
    0
  );
}

main {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  width: min(1160px, calc(100% - 4rem));
  margin: 0 auto;
  padding: clamp(4.2rem, 8vw, 7.2rem) 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  --hero-logo-width: min(92vw, 1040px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 7% 8% auto;
  height: clamp(190px, 23vw, 320px);
  background: radial-gradient(
    62% 100% at 50% 0%,
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.03) 42%,
    rgba(0, 0, 0, 0) 74%
  );
  filter: blur(16px);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
}

.kicker {
  margin: 0 0 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: clamp(0.78rem, 1.05vw, 0.96rem);
  color: var(--soft);
}

h1,
h2,
h3 {
  font-weight: 100;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 9vw, 7.5rem);
  letter-spacing: clamp(0.1em, 1.1vw, 0.24em);
  text-transform: none;
  line-height: 1.06;
  text-shadow:
    0 18px 34px rgba(0, 0, 0, 0.16),
    0 3px 9px rgba(0, 0, 0, 0.11);
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
}

.subtitle {
  margin: 1.9rem 0 0;
  font-size: clamp(1.06rem, 1.7vw, 1.4rem);
  letter-spacing: 0.19em;
  color: #111111;
}

.hero-brand {
  width: var(--hero-logo-width);
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-brand h1 {
  margin: 0;
}

.hero-brand .subtitle {
  width: fit-content;
  max-width: 100%;
  margin: 1.15rem auto 0;
  text-align: left;
  padding-left: 0;
  transform: translateX(clamp(-6.4rem, -7.6vw, -2.8rem));
}

@media (min-width: 701px) {
  .hero-brand .subtitle {
    transform: translateX(clamp(-12.8rem, -15.2vw, -5.6rem));
  }
}

.hero__line {
  margin: 4.4rem auto 0;
  max-width: none;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  color: #4b4b4b;
  letter-spacing: 0.1em;
  text-transform: none;
  text-align: center;
  font-weight: 300;
  white-space: nowrap;
}

.hero__line-break {
  display: none;
}

.hero-visual {
  position: relative;
  width: min(1600px, calc(100% - 1.2rem));
  margin: 0 auto;
  padding: 0;
  z-index: 1;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: clamp(300px, 56vw, 760px);
  object-fit: cover;
  object-position: center;
  border: 1px solid #ededed;
}

h2 {
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  color: #222222;
}

p {
  margin: 0 0 0.62rem;
  max-width: 62ch;
  line-height: 1.55;
  color: #171717;
  letter-spacing: 0.012em;
  font-weight: 200;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.1rem, 3vw, 2.6rem);
  align-items: start;
}

.lead {
  font-size: clamp(1.15rem, 1.9vw, 1.75rem);
  line-height: 1.45;
  letter-spacing: 0.008em;
  max-width: 24ch;
  color: #0f0f0f;
}

.fragments p {
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  color: #202020;
}

.small-label {
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7b7b7b;
  margin-bottom: 1rem;
}

.concept {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.8rem;
  align-items: start;
}

.concept__block {
  background: linear-gradient(#ffffff, #fcfcfc);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3.5vw, 3.4rem);
  position: relative;
}

.concept__block::after {
  content: "";
  position: absolute;
  inset: auto 15% -8% 15%;
  height: 16%;
  border-radius: 999px;
  background: radial-gradient(
    58% 100% at 50% 0%,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0)
  );
  filter: blur(10px);
  opacity: 0.45;
  pointer-events: none;
}

.concept__block--left {
  grid-column: 1 / span 7;
}

.concept__block--right {
  grid-column: 9 / span 4;
  margin-top: clamp(4rem, 6vw, 8rem);
}

.oeuvres__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1.35rem;
}

.oeuvres--index .oeuvres__grid {
  grid-template-columns: repeat(3, minmax(124px, 1fr));
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.oeuvre-card {
  min-height: 300px;
  border: 1px solid var(--line);
  padding: 1rem 1rem 1.35rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fdfdfd 100%);
  transition: transform 900ms ease, border-color 900ms ease;
}

.oeuvres--index .oeuvre-card {
  min-height: auto;
  padding: 0.28rem 0.28rem 0.4rem;
  border-color: #f0f0f0;
  background: #ffffff;
}

.oeuvres--index .oeuvre-media {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-color: #f3f3f3;
}

.oeuvres--index .oeuvre-media img {
  filter: grayscale(100%) contrast(102%) brightness(1.02);
}

.oeuvre-open {
  all: unset;
  display: block;
  width: 100%;
  cursor: zoom-in;
}

.oeuvre-media {
  margin: 0 0 1rem;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  background: #ffffff;
}

.oeuvre-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(105%);
  transition: transform 1200ms ease;
}

.oeuvre-card h3 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0 0.8rem;
}

.oeuvres--index .oeuvre-card h3 {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0 0.25rem;
  margin-top: 0.2rem;
  color: #3a3a3a;
}

.oeuvre-card p {
  margin-top: 1.1rem;
  color: #595959;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  line-height: 1.8;
  text-transform: none;
  padding: 0 0.8rem;
}

.oeuvres--index .oeuvre-card p {
  display: none;
}

.card-shadow {
  position: absolute;
  inset: 30% -10%;
  background: radial-gradient(
    42% 34% at var(--mx) var(--my),
    rgba(0, 0, 0, 0.09),
    rgba(0, 0, 0, 0) 72%
  );
  filter: blur(16px);
  opacity: 0;
  transition: opacity 900ms ease;
  pointer-events: none;
}

.oeuvre-card:hover,
.oeuvre-card:focus-visible {
  border-color: #d7d7d7;
  transform: translateY(-2px);
}

.oeuvres--index .oeuvre-card:hover,
.oeuvres--index .oeuvre-card:focus-visible {
  border-color: #e3e3e3;
  transform: translateY(-1px);
}

.oeuvre-card:hover .oeuvre-media img,
.oeuvre-card:focus-visible .oeuvre-media img {
  transform: scale(1.02);
}

.oeuvre-open:focus-visible .oeuvre-media {
  outline: 1px solid #bdbdbd;
  outline-offset: 2px;
}

.oeuvre-card:hover .card-shadow,
.oeuvre-card:focus-visible .card-shadow {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 550ms ease;
  display: grid;
  place-items: center;
  padding: 3.5rem 1.2rem 1.2rem;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  border: 1px solid #dfdfdf;
  background: #ffffff;
  color: #212121;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #dfdfdf;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__nav--prev {
  left: 1.1rem;
}

.lightbox__nav--next {
  right: 1.1rem;
}

.lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.lightbox__figure {
  margin: 0;
  width: min(90vw, 860px);
}

.lightbox__figure img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid #ececec;
  background: #ffffff;
}

.lightbox__figure figcaption {
  margin-top: 0.95rem;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: #4c4c4c;
}

.contact {
  width: min(980px, 100%);
  margin-inline: auto;
}

.contact-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.contact-visual {
  margin: 0;
  border: 1px solid #ececec;
  background: #ffffff;
  overflow: hidden;
}

.contact-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.contact-panel {
  border: 1px solid #efefef;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  padding: clamp(1rem, 3vw, 1.6rem);
}

.contact-intro {
  margin: 0 0 1rem;
  color: #2b2b2b;
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.contact-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1rem;
  align-items: center;
  text-transform: lowercase;
}

.contact-col {
  margin: 0;
  color: #4a4a4a;
  letter-spacing: 0.08em;
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  line-height: 1.25;
}

.contact-col--social {
  text-align: left;
}

.contact-col--spacer {
  display: block;
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid #eeeeee;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: 1.3rem 0 1.8rem;
}

.site-footer__inner {
  width: min(1160px, calc(100% - 4rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.2rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.site-footer__nav a {
  text-decoration: none;
  color: #242424;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 0.12rem;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #000000;
  border-bottom-color: #9a9a9a;
}

.site-footer__meta {
  margin: 0;
  color: #555555;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-email {
  display: inline-block;
  text-decoration: none;
  color: #101010;
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  letter-spacing: 0.08em;
  text-transform: lowercase;
  line-height: 1.2;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 0.2rem;
  transition: color 600ms ease, border-color 600ms ease;
}

.contact-email-row {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.5rem;
  white-space: nowrap;
}

.contact-label {
  color: #4a4a4a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: #000000;
  border-color: #6f6f6f;
}

.contact-email--protected {
  cursor: pointer;
}

.contact-social {
  margin-top: 1rem;
  color: #3c3c3c;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.contact-handle {
  display: inline-block;
  text-decoration: none;
  color: #1d1d1d;
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  letter-spacing: 0.1em;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 0.18rem;
  transition: color 600ms ease, border-color 600ms ease;
  text-transform: lowercase;
}

.contact-handle:hover,
.contact-handle:focus-visible {
  color: #000000;
  border-color: #777777;
}

.contact-legal-link {
  margin: 1.25rem 0 0;
}

.contact-legal-link a {
  text-decoration: none;
  color: #1d1d1d;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 0.14rem;
}

.contact-legal-link a:hover,
.contact-legal-link a:focus-visible {
  color: #000000;
  border-bottom-color: #8a8a8a;
}

.minimal-list {
  margin: 0.8rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.minimal-list li {
  margin: 0 0 0.45rem;
  color: #1e1e1e;
  letter-spacing: 0.06em;
}

.oeuvres-note {
  margin-top: 0.35rem;
  max-width: 70ch;
  color: #202020;
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.5;
}

.oeuvres-intro {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.oeuvres-series-layout {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: start;
}

.oeuvres-series-gallery .oeuvres__grid {
  margin-top: 0;
}

.oeuvres-empty {
  margin-top: 1rem;
  color: #4a4a4a;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.oeuvres-cta {
  margin-top: 1.2rem;
}

.oeuvres-cta--top {
  margin: 0 0 0.7rem;
}

.oeuvres-link {
  display: inline-block;
  text-decoration: none;
  color: #0f0f0f;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(0.9rem, 1.2vw, 1.06rem);
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid #dfdfdf;
  transition: color 700ms ease, border-color 700ms ease;
}

.oeuvres-link:hover,
.oeuvres-link:focus-visible {
  color: #000000;
  border-color: #808080;
}

.oeuvres--index .oeuvres-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #5f5f5f;
  border-bottom-color: #ebebeb;
  padding: 0.2rem 0;
}

.oeuvres--index .oeuvres-link:hover,
.oeuvres--index .oeuvres-link:focus-visible {
  color: #2d2d2d;
  border-bottom-color: #bdbdbd;
}

@media (min-width: 901px) {
  .oeuvres-series-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    column-gap: clamp(1.6rem, 4vw, 4rem);
    align-items: end;
  }

  .oeuvres-series-gallery {
    justify-self: start;
    align-self: end;
  }

  .oeuvres-series-gallery .oeuvres__grid {
    max-width: 456px;
    width: 100%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1200ms ease, transform 1200ms ease;
}

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

@media (max-width: 900px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lead {
    max-width: 30ch;
  }

  .concept__block--left,
  .concept__block--right {
    grid-column: 1 / -1;
    margin-top: 0;
  }

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

  .oeuvres--index .oeuvres__grid {
    grid-template-columns: repeat(3, minmax(78px, 1fr));
    gap: 0.55rem;
  }
}

@media (max-width: 700px) {
  .section {
    width: min(1100px, calc(100% - 2.2rem));
  }

  .hero.section {
    width: min(1300px, calc(100% - 0.6rem));
  }

  .hero {
    --hero-logo-width: min(98vw, 1300px);
  }

  .hero-visual {
    width: min(1600px, calc(100% - 0.6rem));
  }

  .hero-visual img {
    height: clamp(220px, 72vw, 480px);
  }

  .kicker {
    letter-spacing: 0.2em;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .hero__line {
    max-width: 44ch;
    text-align: left;
    white-space: normal;
  }

  .hero__line-break {
    display: inline;
  }

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

  .contact-col--social {
    text-align: center;
  }

  .contact-col--spacer {
    display: none;
  }

  .site-footer__inner {
    width: min(1100px, calc(100% - 2.2rem));
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__meta {
    align-self: flex-end;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atmosphere__shadow,
  .reveal,
  .oeuvre-card,
  .card-shadow,
  .contact-email,
  .contact-handle,
  .page-loader,
  .page-loader__mark {
    animation: none !important;
    transition-duration: 10ms !important;
  }
}
