:root {
  --paper: #f3eee5;
  --paper-deep: #e7dfd2;
  --ink: #241f1a;
  --muted: #786f64;
  --line: rgba(36, 31, 26, 0.16);
  --shadow: rgba(36, 31, 26, 0.14);
  --artwork-long: clamp(620px, 50vw, 820px);
  --artwork-stage: clamp(620px, 50vw, 820px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 255, 255, 0.5), transparent 28rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.32), transparent 45%);
  mix-blend-mode: soft-light;
  z-index: 10;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px clamp(18px, 2.8vw, 40px);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(118px, 10vw, 165px);
  opacity: 1;
  transition: opacity 220ms ease;
}

.brand:hover {
  opacity: 1;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-lockup {
  display: grid;
  gap: 9px;
  align-items: start;
}

.brand-lockup span {
  color: rgba(36, 31, 26, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.brand:has(.logo-b) {
  width: clamp(118px, 10vw, 165px);
}

.brand:has(.logo-c) {
  width: clamp(118px, 10vw, 165px);
}

.nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(36, 31, 26, 0.86);
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  border-color: currentColor;
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(16px, 3vw) minmax(0, 1fr) minmax(16px, 3vw);
  align-items: end;
  padding: 0 0 34px;
}

.hero-image {
  grid-column: 1 / 4;
  grid-row: 1;
  height: min(91vh, 1040px);
  margin: 0 clamp(4px, 0.9vw, 14px);
  overflow: hidden;
  box-shadow: 0 20px 70px rgba(36, 31, 26, 0.1);
}

.hero-image img {
  object-position: 50% 45%;
  transform: scale(1.025);
  animation: slow-drift 22s ease-out forwards;
}

.hero-copy {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  width: min(640px, 90vw);
  margin-top: 14px;
  color: var(--ink);
  text-shadow: none;
}

h1,
h2,
h3,
.work-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(4.5rem, 13vw, 12rem);
}

.hero-copy h1 {
  font-size: clamp(1.55rem, 2.2vw, 2.55rem);
  line-height: 1;
}

h2 {
  font-size: clamp(3rem, 9vw, 8.5rem);
}

h3,
.work-title {
  font-size: clamp(2.1rem, 5vw, 5.5rem);
}

.kicker {
  margin: 0 0 18px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-copy p {
  width: min(360px, 86vw);
  margin: 7px 0 0;
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  color: var(--muted);
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 8vw, 120px);
  padding: clamp(72px, 10vw, 140px) clamp(24px, 8vw, 130px);
}

.intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  max-width: 650px;
}

.index-number {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(6rem, 14vw, 15rem);
  color: rgba(36, 31, 26, 0.1);
  line-height: 0.8;
}

.feature-work,
.work-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  padding: clamp(76px, 10vw, 150px) clamp(24px, 6vw, 96px);
}

.feature-image {
  grid-column: 1 / 8;
  height: clamp(440px, 68vw, 900px);
  overflow: hidden;
}

.feature-text {
  grid-column: 8 / 13;
  align-self: end;
}

.feature-text p,
.painting-body p,
.detail-meta,
.work-meta {
  color: var(--muted);
}

.button-link {
  display: inline-flex;
  margin-top: 30px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.works-hero {
  min-height: 32vh;
  display: grid;
  align-content: end;
  padding: 104px clamp(24px, 7vw, 112px) 20px;
}

.bio-hero {
  min-height: 56vh;
  display: grid;
  align-content: end;
  padding: 124px clamp(24px, 7vw, 112px) 54px;
}

.bio-hero h1 {
  font-size: clamp(4rem, 12vw, 12rem);
}

.about-logo-field {
  min-height: 31vh;
  display: flex;
  align-items: flex-end;
  padding: 118px clamp(24px, 7vw, 112px) 28px;
}

.about-logo-field img {
  width: clamp(140px, 12vw, 190px);
  height: auto;
  opacity: 1;
}

.bio-body {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 120px);
  padding: clamp(28px, 4vw, 58px) clamp(24px, 7vw, 112px) clamp(82px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.about-page .bio-body {
  margin-top: clamp(150px, 22vh, 230px);
}

.type-preview-b .hero-copy {
  margin-top: clamp(24px, 3vw, 42px);
}

.type-preview-b .hero-copy h1 {
  font-size: clamp(1.28rem, 1.7vw, 2rem);
}

.type-preview-b .hero-copy p {
  margin-top: 13px;
  font-size: clamp(0.82rem, 0.92vw, 0.94rem);
}

.type-preview-c .hero-copy {
  margin-top: clamp(32px, 4vw, 54px);
}

.type-preview-c .hero-copy h1 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(36, 31, 26, 0.72);
}

.type-preview-c .hero-copy p {
  margin-top: 18px;
  font-size: clamp(0.78rem, 0.88vw, 0.9rem);
  color: rgba(120, 111, 100, 0.82);
}

.bio-body .kicker {
  color: var(--muted);
}

.bio-copy {
  max-width: 680px;
}

.bio-copy p {
  margin: 0 0 1.2em;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.bio-copy p:first-child {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.5;
}

.contact-line {
  display: grid;
  gap: 8px;
  margin-top: clamp(34px, 5vw, 70px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-style: normal;
  letter-spacing: 0.03em;
}

.contact-line span {
  color: rgba(120, 111, 100, 0.72);
}

.contact-line a {
  width: fit-content;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(36, 31, 26, 0.28);
  padding-bottom: 4px;
}

.works-hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.5rem);
}

.works-hero p {
  max-width: 520px;
  color: var(--muted);
  margin: 28px 0 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.work-row {
  --work-long: var(--artwork-stage);
  min-height: 118vh;
  border-top: 1px solid var(--line);
  padding-top: clamp(112px, 14vw, 230px);
  padding-bottom: clamp(112px, 14vw, 230px);
  align-items: center;
}

.work-row:nth-child(even) .work-frame {
  grid-column: 6 / 13;
}

.work-row:nth-child(even) .work-info {
  grid-column: 1 / 5;
  grid-row: 1;
}

.work-frame {
  display: block;
  position: relative;
  grid-column: 1 / 8;
  aspect-ratio: 1 / 1;
  height: var(--work-long);
  width: var(--work-long);
  max-width: 100%;
  justify-self: center;
  align-self: center;
  overflow: visible;
  background: transparent;
}

.work-frame img {
  object-fit: contain;
  object-position: center;
}

.work-row--summer .work-frame {
  grid-column: 7 / 13;
}

.work-row--summer .work-info {
  grid-column: 1 / 5;
}

.work-row--summer .work-crop {
  object-fit: contain;
  object-position: center;
}

.work-row--rain .work-frame {
  grid-column: 1 / 7;
}

.work-row--rain .work-crop {
  object-fit: contain;
  object-position: center;
}

.work-row--beautiful-game .work-frame {
  grid-column: 5 / 13;
}

.work-row--beautiful-game .work-info {
  grid-column: 1 / 4;
}

.work-row--beautiful-game .work-crop {
  object-fit: contain;
  object-position: 50% 49%;
}

.work-row--champion .work-frame {
  grid-column: 1 / 7;
}

.work-row--champion .work-info {
  grid-column: 8 / 12;
  align-self: center;
}

.work-row--champion .work-crop {
  object-fit: contain;
  object-position: center;
}

.work-row--hotel-room .work-frame {
  grid-column: 5 / 13;
}

.work-row--hotel-room .work-info {
  grid-column: 1 / 5;
  align-self: center;
}

.work-row--hotel-room .work-crop {
  object-fit: contain;
  object-position: 50% 48%;
}

.work-info {
  grid-column: 9 / 13;
  align-self: end;
}

.work-meta {
  margin: 18px 0 0;
}

.art-detail {
  margin: 18px 0 0;
  color: rgba(120, 111, 100, 0.74);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1.65;
}

.work-action {
  display: none;
}

.painting-hero {
  --painting-long: var(--artwork-stage);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 100vh;
  padding: 116px clamp(24px, 6vw, 96px) 70px;
  gap: clamp(18px, 3vw, 44px);
  align-items: end;
}

.painting-title {
  grid-column: 1 / 5;
  padding-bottom: 6vh;
}

.painting-title h1 {
  font-size: clamp(3.4rem, 5.8vw, 6.2rem);
}

.painting-title p {
  margin: 22px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.painting-image {
  position: relative;
  grid-column: 6 / 13;
  aspect-ratio: 1 / 1;
  height: var(--painting-long);
  width: var(--painting-long);
  max-width: 100%;
  justify-self: center;
  overflow: visible;
  background: transparent;
  box-shadow: 0 22px 70px rgba(36, 31, 26, 0.08);
}

.painting-image img {
  object-fit: contain;
}

.painting-hero--rain .painting-title,
.painting-hero--beautiful-game .painting-title {
  grid-column: 1 / 5;
}

.painting-hero--beautiful-game .painting-image {
  grid-column: 6 / 13;
  box-shadow: none;
}

.painting-image--panoramic {
  aspect-ratio: 1 / 1;
}

.painting-hero--summer {
  align-items: center;
}

.painting-hero--summer .painting-title {
  grid-column: 1 / 5;
  padding-bottom: 0;
}

.painting-hero--summer .painting-image {
  grid-column: 6 / 13;
  box-shadow: none;
}

.painting-hero--rain {
  align-items: center;
}

.painting-hero--rain .painting-title {
  grid-column: 8 / 13;
  grid-row: 1;
  padding-bottom: 0;
}

.painting-hero--rain .painting-image {
  grid-column: 1 / 7;
  box-shadow: none;
}

.painting-hero--beautiful-game .painting-image {
  margin-bottom: 5vh;
}

.painting-hero--champion {
  align-items: center;
}

.painting-hero--champion .painting-title {
  grid-column: 8 / 13;
  grid-row: 1;
  padding-bottom: 0;
}

.painting-hero--champion .painting-image {
  grid-column: 1 / 7;
  box-shadow: none;
}

.painting-hero--rain .painting-title h1,
.painting-hero--beautiful-game .painting-title h1 {
  font-size: clamp(3.1rem, 5vw, 5.5rem);
}

.painting-hero--hotel-room {
  align-items: center;
}

.painting-hero--hotel-room .painting-title {
  grid-column: 1 / 5;
  padding-bottom: 0;
}

.painting-hero--hotel-room .painting-image {
  grid-column: 6 / 13;
  margin-bottom: 0;
  box-shadow: none;
}

.detail-drift {
  will-change: transform;
}

.painting-body {
  padding: clamp(72px, 9vw, 140px) clamp(24px, 7vw, 112px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.painting-body p {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

.detail-meta {
  display: grid;
  gap: 12px;
  align-self: start;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer {
  padding: 42px clamp(24px, 6vw, 96px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-logo {
  display: block;
  width: clamp(94px, 8vw, 128px);
  opacity: 0.86;
}

.copyright {
  color: rgba(120, 111, 100, 0.82);
}

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

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

.work-frame.reveal {
  transition-duration: 1550ms;
}

.work-info.reveal {
  transition-delay: 180ms;
}

.parallax {
  will-change: transform;
}

.gentle-drift {
  will-change: transform;
}

@keyframes slow-drift {
  from {
    transform: scale(1.035) translate3d(0, 7px, 0);
  }
  to {
    transform: scale(1.012) translate3d(0, -4px, 0);
  }
}

@media (max-width: 1100px) {
  .painting-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .painting-title,
  .painting-image {
    grid-column: 1;
  }

  .painting-hero--rain .painting-title,
  .painting-hero--rain .painting-image,
  .painting-hero--summer .painting-title,
  .painting-hero--summer .painting-image,
  .painting-hero--beautiful-game .painting-title,
  .painting-hero--beautiful-game .painting-image,
  .painting-hero--champion .painting-title,
  .painting-hero--champion .painting-image,
  .painting-hero--hotel-room .painting-title,
  .painting-hero--hotel-room .painting-image {
    grid-column: 1;
    grid-row: auto;
  }

  .painting-title {
    padding-bottom: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    padding: 22px;
  }

  .nav {
    gap: 16px;
  }

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

  .hero-image {
    height: 82vh;
    margin: 0 10px;
  }

  .hero-copy {
    width: auto;
    margin-top: 18px;
  }

  h1 {
    font-size: clamp(4.5rem, 22vw, 8rem);
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .intro,
  .painting-body {
    grid-template-columns: 1fr;
  }

  .feature-work,
  .work-row {
    grid-template-columns: 1fr;
  }

  .work-row {
    --work-long: min(86vw, 620px);
  }

  .painting-hero {
    --painting-long: min(86vw, 620px);
  }

  .feature-image,
  .feature-text,
  .work-row:nth-child(even) .work-frame,
  .work-row:nth-child(even) .work-info,
  .work-row--rain .work-frame,
  .work-row--summer .work-frame,
  .work-row--summer .work-info,
  .work-row--beautiful-game .work-frame,
  .work-row--beautiful-game .work-info,
  .work-row--champion .work-frame,
  .work-row--champion .work-info,
  .work-row--hotel-room .work-frame,
  .work-row--hotel-room .work-info,
  .work-frame,
  .work-info,
  .painting-title,
  .painting-image {
    grid-column: 1;
  }

  .work-row:nth-child(even) .work-info {
    grid-row: auto;
  }

  .feature-image,
  .work-frame,
  .painting-image {
    width: min(100%, var(--work-long));
    height: min(86vw, 620px);
    aspect-ratio: 1 / 1;
  }

  .painting-image {
    width: min(100%, var(--painting-long));
    height: min(86vw, 620px);
  }

  .site-footer {
    flex-direction: column;
  }

  .works-hero {
    min-height: 30vh;
    padding-bottom: 20px;
  }

  .bio-hero {
    min-height: 42vh;
  }

  .bio-body {
    grid-template-columns: 1fr;
  }

  .works-hero h1,
  .bio-hero h1,
  .painting-title h1 {
    font-size: clamp(3.5rem, 18vw, 6.5rem);
  }
}
