@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/inter-500.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Serif Display";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("/fonts/noto-serif-display-200.woff2") format("woff2");
}

[hidden] {
  display: none !important;
}

:root {
  --paper: #f5f4f1;
  --graphite: #242321;
  --secondary: #5f5c56;
  --muted: #8a857c;
  --hairline: #d8d3c9;
  --serif: "Noto Serif Display", Didot, "Bodoni MT", "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

.age-gate {
  align-items: center;
  background: var(--paper);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 38px;
  position: fixed;
  z-index: 200;
}

.age-gate-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 200;
  left: 38px;
  position: absolute;
  top: 30px;
}

.age-gate-content {
  max-width: 610px;
  text-align: center;
}

.age-gate-kicker {
  color: var(--secondary);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.age-gate h1 {
  font-family: var(--serif);
  font-size: clamp(110px, 18vw, 240px);
  font-weight: 200;
  letter-spacing: -0.06em;
  line-height: 0.72;
  margin: 0 0 60px;
}

.age-gate-content > p:not(.age-gate-kicker) {
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 480px;
}

.age-gate-actions {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 42px;
}

.age-gate-actions button {
  background: var(--graphite);
  border: 1px solid var(--graphite);
  color: var(--paper);
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.09em;
  padding: 16px 22px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.age-gate-actions button:hover,
.age-gate-actions button:focus-visible {
  background: transparent;
  color: var(--graphite);
}

.age-gate-actions a {
  color: var(--secondary);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.age-gate-actions a:hover,
.age-gate-actions a:focus-visible {
  color: var(--graphite);
  text-decoration: underline;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.site-header {
  align-items: center;
  color: #fff;
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  mix-blend-mode: difference;
  padding: 0 38px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 40;
  animation: header-in 420ms ease-out both;
}

.desktop-nav,
.language-switcher {
  align-items: center;
  color: inherit;
  display: flex;
  font-size: 14px;
  letter-spacing: 0.005em;
}

.nav-group {
  align-items: center;
  display: inline-flex;
}

.nav-dot,
.language-switcher > span:not(.language-active) {
  margin: 0 9px;
}

.desktop-nav a,
.language-switcher button {
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.language-switcher button:hover:not(:disabled),
.language-switcher button:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.language-switcher button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
}

.language-switcher button:disabled {
  cursor: default;
  opacity: 0.48;
}

.language-active {
  opacity: 1;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-name {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-size: clamp(72px, 8.2vw, 118px);
  font-weight: 200;
  left: 5.8vw;
  letter-spacing: -0.038em;
  line-height: 0.91;
  position: absolute;
  top: 51%;
  transform: translateY(-41%);
  z-index: 2;
  animation: name-in 680ms 120ms ease-out both;
}

.hero-artwork {
  height: 112%;
  position: absolute;
  right: -5vw;
  top: -5%;
  width: 72%;
  animation: artwork-in 760ms ease-out both;
}

.hero-artwork img {
  height: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mix-blend-mode: multiply;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.26);
  transform-origin: 52% 44%;
  width: 100%;
}

.scroll-cue {
  align-items: center;
  bottom: 28px;
  color: var(--secondary);
  display: flex;
  left: 38px;
  opacity: 1;
  position: fixed;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  visibility: visible;
  z-index: 35;
}

.scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.scroll-cue span {
  font-size: 16px;
  transition: transform 180ms ease;
}

.scroll-cue:hover span {
  transform: translateY(3px);
}

.portfolio-section {
  padding: 150px 38px 130px;
}

.section-heading {
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 72px;
  padding-bottom: 24px;
  text-align: center;
}

.eyebrow {
  color: var(--secondary);
  font-size: 11px;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.section-heading h2,
.about-copy h2,
.contact-intro h2 {
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 102px);
  font-weight: 200;
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin: 0;
}

.artwork-grid {
  column-count: 3;
  column-gap: clamp(22px, 3vw, 48px);
}

.artwork-card {
  background: transparent;
  border: 0;
  break-inside: avoid;
  cursor: zoom-in;
  display: block;
  margin: 0 0 clamp(34px, 5vw, 76px);
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.artwork-card img {
  filter: contrast(0.98);
  height: auto;
  mix-blend-mode: multiply;
  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
  width: 100%;
}

.artwork-card:hover img,
.artwork-card:focus-visible img {
  opacity: 0.84;
  transform: scale(1.012);
}

.artwork-card:focus-visible {
  outline: 1px solid var(--graphite);
  outline-offset: 6px;
}

.about-section {
  align-items: start;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  min-height: 100svh;
  overflow: hidden;
  padding: 0 7vw 0 0;
}

.about-portrait {
  height: 100svh;
  min-height: 820px;
  overflow: hidden;
  position: sticky;
  top: 0;
}

.about-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: 49% 18%;
  width: 100%;
}

.about-copy {
  max-width: 720px;
  padding: 145px 0 130px clamp(56px, 7vw, 120px);
}

.about-copy h2 {
  margin: 0 0 70px;
}

.about-copy > p:not(.eyebrow) {
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 24px;
}

.bio-facts {
  border-top: 1px solid var(--hairline);
  margin-top: 64px;
  padding-top: 34px;
}

.bio-facts p {
  color: var(--secondary);
  font-size: 13px;
  line-height: 1.75;
  margin: 0 0 25px;
}

.bio-facts strong {
  color: var(--graphite);
  font-weight: 500;
}

.contact-section {
  border-top: 1px solid var(--hairline);
  display: grid;
  gap: clamp(70px, 9vw, 160px);
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 82svh;
  padding: 150px 8vw 120px;
}

.contact-intro {
  max-width: 480px;
}

.contact-intro h2 {
  margin: 0 0 52px;
}

.contact-intro > p:not(.eyebrow) {
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 50px;
}

.instagram-link {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  gap: 12px;
  padding: 16px 0;
}

.instagram-link > span:last-child {
  color: var(--secondary);
}

.instagram-icon {
  color: var(--graphite);
  display: inline-flex;
  height: 18px;
  width: 18px;
}

.instagram-icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
  width: 100%;
}

.instagram-icon .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.contact-form {
  max-width: 680px;
  padding-top: 34px;
}

.contact-form label {
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 22px 0;
}

.contact-form label > span {
  color: var(--secondary);
  font-size: 12px;
  padding-top: 7px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--graphite);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 200;
  line-height: 1.45;
  outline: 0;
  padding: 0;
  resize: vertical;
  width: 100%;
}

.contact-form label:focus-within {
  border-color: var(--graphite);
}

.form-footer {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-top: 42px;
}

.form-footer button {
  background: var(--graphite);
  border: 1px solid var(--graphite);
  color: var(--paper);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 15px 24px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.form-footer button:hover,
.form-footer button:focus-visible {
  background: transparent;
  color: var(--graphite);
}

.form-footer p {
  color: var(--secondary);
  font-size: 12px;
  margin: 0;
}

footer {
  align-items: center;
  border-top: 1px solid var(--hairline);
  display: grid;
  font-size: 11px;
  grid-template-columns: 1fr auto;
  letter-spacing: 0.08em;
  padding: 38px;
  text-transform: uppercase;
}

footer p {
  color: var(--secondary);
  margin: 0;
}

footer p:last-child {
  justify-self: end;
}

.footer-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0;
  text-transform: none;
}

.lightbox {
  align-items: center;
  background: rgba(25, 24, 22, 0.96);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 60px;
  position: fixed;
  z-index: 100;
  animation: lightbox-in 220ms ease-out both;
}

.lightbox img {
  max-height: calc(100svh - 90px);
  max-width: min(90vw, 1500px);
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.lightbox-close {
  background: none;
  border: 0;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  padding: 18px;
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 2;
}

.lightbox-close:hover {
  opacity: 0.72;
  text-decoration: none;
}

.lightbox-close:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
  text-decoration: none;
}

@keyframes artwork-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes name-in {
  from {
    opacity: 0;
    transform: translateY(calc(-41% + 12px));
  }
  to {
    opacity: 1;
    transform: translateY(-41%);
  }
}

@keyframes header-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lightbox-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .hero-artwork {
    right: -7vw;
    width: 76%;
  }

  .hero-name {
    font-size: clamp(66px, 8vw, 92px);
    left: 4vw;
  }

  .about-section {
    grid-template-columns: 0.88fr 1.12fr;
    padding-right: 5vw;
  }

  .about-copy {
    padding-left: 5vw;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 66px;
    padding: 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    background: transparent;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 32px;
    justify-content: center;
    padding: 0;
    width: 28px;
    z-index: 2;
  }

  .menu-button span {
    background: currentColor;
    display: block;
    height: 1px;
    transition: transform 180ms ease;
    width: 24px;
  }

  .mobile-menu {
    background: var(--paper);
    display: block;
    inset: 0;
    opacity: 0;
    padding: 100px 24px 40px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
    visibility: hidden;
    z-index: 30;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu a {
    border-bottom: 1px solid var(--hairline);
    font-family: var(--serif);
    font-size: clamp(44px, 13vw, 70px);
    font-weight: 200;
    line-height: 1.25;
    padding: 8px 0;
  }

  .language-switcher {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 68px;
  }

  .hero-artwork {
    height: auto;
    margin-left: auto;
    position: relative;
    right: auto;
    top: auto;
    width: 96%;
  }

  .hero-artwork img {
    height: auto;
    object-fit: contain;
    transform: none;
    width: 100%;
  }

  .hero-name {
    font-size: clamp(57px, 18.5vw, 112px);
    left: auto;
    line-height: 0.88;
    padding: 22px 20px 105px;
    position: relative;
    top: auto;
    transform: none;
  }

  .scroll-cue {
    bottom: 32px;
    left: 20px;
  }

  .section-heading {
    margin-bottom: 46px;
  }

  .portfolio-section {
    padding: 105px 20px 80px;
  }

  .artwork-grid {
    column-count: 2;
    column-gap: 16px;
  }

  .artwork-card {
    margin-bottom: 28px;
  }

  .about-section {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .about-portrait {
    height: 78svh;
    min-height: 580px;
    position: relative;
    width: 100%;
  }

  .about-portrait img {
    object-position: 50% 14%;
  }

  .about-copy {
    margin-top: 0;
    padding: 70px 20px 95px;
    position: relative;
    z-index: 1;
  }

  .about-copy h2 {
    margin-bottom: 48px;
  }

  .contact-section {
    display: block;
    min-height: auto;
    padding: 105px 20px 90px;
  }

  .contact-form {
    margin-top: 70px;
    padding-top: 0;
  }

  footer {
    gap: 18px;
    grid-template-columns: 1fr auto;
    padding: 28px 20px;
  }

  .age-gate {
    padding: 24px 20px;
  }

  .age-gate-name {
    font-size: 16px;
    left: 20px;
    top: 24px;
  }

  .age-gate h1 {
    margin-bottom: 45px;
  }

  .age-gate-actions {
    flex-direction: column;
    gap: 22px;
  }

  .lightbox {
    padding: 58px 12px 20px;
  }
}

@media (max-width: 520px) {
  .artwork-grid {
    column-count: 1;
  }

  .artwork-card {
    margin-bottom: 42px;
  }

  .contact-form label {
    display: block;
  }

  .contact-form label > span {
    display: block;
    margin-bottom: 12px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
