* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f0eb;
  color: #1c1a17;
  font-family: "EB Garamond", Georgia, serif;
  line-height: 1.6;
}

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

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

/* TYPOGRAPHY */

.nav-links a,
.eyebrow,
.text-link,
.archive-label,
.work-info p,
.work-info span,
.archive-description p,
.archive-details,
.archive-link,
.collection-intro,
.collection-caption p,
.work-detail-meta,
.work-detail-text,
.work-detail-nav,
.footer-left a,
.footer-location,
.about-text p,
.contact-info p,
.contact-info a,
.artwork-meta p,
.artwork-navigation a,
.slider-controls,
.journal-item p,
.journal-item span {
  font-family: "IBM Plex Mono", monospace;
}

.nav-links a,
.eyebrow,
.text-link,
.archive-label,
.footer-left a,
.footer-location,
.journal-item span {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* NAV */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 26px 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(245, 240, 235, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 26, 23, 0.08);
}

.nav-logo {
  font-family: "EB Garamond", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  font-size: 12px;
  opacity: 0.62;
  transition: opacity 0.25s ease;
}

.nav-links a:hover {
  opacity: 1;
}

/* SHARED */

.eyebrow,
.archive-label {
  font-size: 11px;
  color: rgba(28, 26, 23, 0.45);
}

.text-link {
  display: inline-block;
  margin-top: 64px;
  font-size: 11px;
  color: #4e7966;
  border-bottom: 1px solid rgba(78, 121, 102, 0.35);
  padding-bottom: 7px;
}

/* HOME HERO */

.hero {
  min-height: 100vh;
  padding: 118px 4vw 64px;
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  gap: 6rem;
  align-items: center;
}

.hero-copy {
  max-width: 500px;
}

.hero h1 {
  font-size: clamp(46px, 5.8vw, 88px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.036em;
  margin-bottom: 32px;
}

.hero-text {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(28, 26, 23, 0.66);
}

.hero-image {
  overflow: hidden;
}

.hero-image img {
  height: auto;
  max-height: 82vh;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-left: auto;
}

/* HOME SELECTED WORKS */

.works {
  padding: 70px 4vw 150px;
  border-top: 1px solid rgba(28, 26, 23, 0.08);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6vw;
  margin-bottom: 76px;
}

.section-head h2 {
  max-width: 680px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.018em;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.work-card {
  overflow: hidden;
  display: block;
}

.work-card img {
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.work-card:hover img {
  transform: scale(1.012);
}

.work-info {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.work-info h3 {
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 6px;
}

.work-info p,
.work-info span {
  font-size: 12px;
  color: rgba(28, 26, 23, 0.52);
}

.work-info span {
  text-align: right;
}

/* HOME ABOUT */

.about {
  padding: 130px 4vw;
  background: #ece6dd;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6vw;
}

.about-right h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin-bottom: 34px;
}

.about-right p {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(28, 26, 23, 0.66);
}

/* WORKS PAGE */

.works-archive {
  padding: 112px 6vw 80px;
}

.works-intro {
  padding: 36px 0 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5vw;
  align-items: center;
  border-bottom: 1px solid rgba(28, 26, 23, 0.1);
  margin-bottom: 20px;
}

.works-intro-copy {
  max-width: 760px;
}

.works-intro-text {
  margin-top: 12px;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.works-intro-drawing {
  display: flex;
  justify-content: center;
  align-items: center;
}

.works-intro-drawing img {
  width: 100%;
  max-width: 430px;
  opacity: 0.96;
}

.archive-work {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 96px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(28, 26, 23, 0.14);
}

.archive-copy {
  max-width: 430px;
}

.archive-copy h1 {
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-top: 18px;
}

.archive-description {
  margin-top: 36px;
}

.archive-description p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(28, 26, 23, 0.72);
  letter-spacing: -0.01em;
}

.archive-details {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(28, 26, 23, 0.18);
}

.archive-link {
  display: inline-block;
  margin-top: 42px;
  font-size: 13px;
  color: rgba(28, 26, 23, 0.76);
  border-bottom: 1px solid rgba(28, 26, 23, 0.42);
  padding-bottom: 6px;
}

.archive-link:hover {
  color: rgba(28, 26, 23, 1);
}

.archive-image,
.archive-image a {
  width: 100%;
}

.archive-image img {
  width: 100%;
  max-width: 690px;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-left: auto;
}

/* COLLECTION PAGE */

.collection-page {
  padding: 90px 6vw 120px;
}

.collection-hero {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding-top: 10px;
}

.collection-hero h1 {
  margin-top: 18px;
  font-size: clamp(52px, 6vw, 96px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.collection-intro {
  max-width: 620px;
  margin: 34px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(28, 26, 23, 0.72);
}

.collection-grid {
  max-width: 980px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 48px;
}

.collection-work {
  display: block;
}

.collection-work img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.collection-caption {
  padding-top: 18px;
}

.collection-caption h2 {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.collection-caption p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(28, 26, 23, 0.62);
}

/* ARTWORK PAGE */

.artwork-page {
  padding: 120px 6vw 100px;
}

.artwork-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 7vw;
  align-items: start;
}

.artwork-info {
  position: sticky;
  top: 120px;
}

.artwork-info h1 {
  margin-top: 16px;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.artwork-meta {
  margin-top: 42px;
}

.artwork-meta p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(28, 26, 23, 0.72);
}

.artwork-text {
  margin-top: 28px;
  max-width: 320px;
}

.artwork-navigation {
  margin-top: 52px;
}

.artwork-navigation a {
  font-size: 13px;
  color: rgba(28, 26, 23, 0.76);
  border-bottom: 1px solid rgba(28, 26, 23, 0.42);
  padding-bottom: 6px;
}

.artwork-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.artwork-slider img {
  display: none;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 210px);
  object-fit: contain;
}

.artwork-slider img.active {
  display: block;
}

.slider-controls {
  width: 100%;
  max-width: 820px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
}

.slider-controls button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: rgba(28, 26, 23, 0.76);
}

.slider-controls button:hover {
  color: rgba(28, 26, 23, 1);
}

/* ABOUT + CONTACT PAGES */

.about-page,
.contact-page {
  min-height: calc(100vh - 90px);
  padding: 180px 4vw 140px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  align-items: start;
}

.about-label,
.contact-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 26, 23, 0.45);
}

.about-content h1,
.contact-content h1 {
  max-width: 820px;
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 54px;
}

.about-text {
  max-width: 720px;
}

.about-text h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  margin: 34px 0 10px;
}

.about-text p,
.contact-info p,
.contact-info a {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(28, 26, 23, 0.72);
  letter-spacing: -0.01em;
}

.about-text p + p {
  margin-top: 22px;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-info a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* ABOUT PAGE WITH IMAGE */

.about-page-with-image {
  grid-template-columns: 0.95fr 1fr;
  gap: 7vw;
  align-items: start;
}

.about-image img {
    width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
}

.about-page-with-image .about-content {
  max-width: 760px;
}

.about-page-with-image .about-label {
  margin-bottom: 28px;
}

.about-page-with-image .about-content h1 {
  margin-bottom: 46px;
}

.about-page-with-image .about-text h2 {
  display: none;
}

/* JOURNAL */

.journal-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 6vw 120px;
}

.journal-split {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 11vw;
  align-items: start;
}

.journal-sticky {
  position: sticky;
  top: 140px;
  max-width: 420px;
}

.journal-sticky h1 {
  margin-top: 18px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.journal-list {
  border-top: 1px solid rgba(28, 26, 23, 0.14);
}

.journal-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(28, 26, 23, 0.14);
  color: inherit;
  text-decoration: none;
}

.journal-item h2 {
  max-width: 620px;
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.journal-item p {
  max-width: 560px;
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(28, 26, 23, 0.64);
}

.journal-item span {
  padding-top: 10px;
  font-size: 11px;
  color: rgba(28, 26, 23, 0.5);
  white-space: nowrap;
}

.journal-item:hover h2 {
  color: #4e7966;
}

/* FOOTER */

.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  padding: 70px 4vw;
  margin-top: 120px;
  background: #111;
  color: #f5f0eb;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-left a,
.footer-location {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.footer-left a:hover {
  color: #fff;
}

.footer-location {
  margin-top: 8px;
  opacity: 0.55;
}

.footer-signature {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-signature img {
  width: 140px;
  height: auto;
  display: block;
  filter: invert(1);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero,
  .section-head,
  .works-grid,
  .about,
  .works-intro,
  .archive-work,
  .collection-grid,
  .artwork-layout,
  .about-page,
  .contact-page,
  .about-page-with-image,
  .journal-split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: auto;
    max-height: none;
  }

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

  .works-intro {
    gap: 40px;
    padding-bottom: 48px;
  }

  .works-intro-drawing {
    justify-content: flex-start;
  }

  .works-intro-drawing img {
    max-width: 260px;
  }

  .archive-work {
    min-height: auto;
    gap: 36px;
    padding: 56px 0;
  }

  .archive-copy {
    padding-right: 0;
  }

  .archive-copy h1 {
    font-size: 40px;
    letter-spacing: -0.035em;
  }

  .archive-description {
    margin-top: 34px;
  }

  .archive-image img {
    max-width: none;
  }

  .collection-grid {
    gap: 56px;
  }

  .artwork-info,
  .journal-sticky {
    position: relative;
    top: auto;
  }

  .artwork-layout {
    gap: 48px;
  }

  .artwork-slider {
    align-items: flex-start;
  }

  .artwork-slider img {
    width: 100%;
    max-height: none;
  }

  .about-page,
  .contact-page {
    padding: 140px 6vw 100px;
    gap: 42px;
  }

  .about-image img {
    max-height: none;
  }

  .journal-page {
    padding: 130px 6vw 90px;
  }

  .journal-split {
    gap: 70px;
  }

  .journal-sticky {
    max-width: 720px;
  }

  .journal-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nav {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text,
  .about-right p {
    font-size: 17px;
  }

  .works,
  .about,
  .works-archive {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .work-info {
    flex-direction: column;
    gap: 8px;
  }

  .work-info span {
    text-align: left;
  }

  .footer-signature img {
    width: 110px;
  }
}.journal-intro{
  margin-top:28px;
  max-width:420px;
  font-family:"IBM Plex Mono", monospace;
  font-size:13px;
  line-height:1.8;
  color:rgba(28,26,23,.65);
}

.journal-intro-small{
  margin-top:24px;
  font-family:"IBM Plex Mono", monospace;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(28,26,23,.45);
}/* JOURNAL ARTICLE */

.journal-article-page {
  padding: 150px 6vw 120px;
}

.journal-article {
  max-width: 820px;
  margin: 0 auto;
}

.journal-article-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 42px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 26, 23, 0.48);
}

.journal-article-meta a {
  border-bottom: 1px solid rgba(28, 26, 23, 0.25);
}

.journal-article h1 {
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 52px;
}

.journal-article-body {
  max-width: 680px;
}

.journal-article-body p {
  font-size: 21px;
  line-height: 1.65;
  color: rgba(28, 26, 23, 0.78);
  margin-bottom: 28px;
}

.journal-related {
  margin-top: 90px;
  padding-top: 34px;
  border-top: 1px solid rgba(28, 26, 23, 0.14);
}

.journal-related a {
  display: inline-block;
  margin-top: 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  border-bottom: 1px solid rgba(28, 26, 23, 0.42);
  padding-bottom: 6px;
}

@media (max-width: 900px) {
  .journal-article-page {
    padding: 130px 6vw 90px;
  }

  .journal-article h1 {
    margin-bottom: 48px;
  }

  .journal-article-body p {
    font-size: 18px;
  }

  .journal-article-meta {
    flex-direction: column;
    gap: 8px;
  }
}/* SUBTLE PAGE ANIMATION */

body {
  animation: pageFadeIn 0.7s ease both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* HERO ENTRANCE */

.hero-copy,
.hero-image,
.journal-sticky,
.journal-list,
.collection-hero,
.collection-grid,
.artwork-info,
.artwork-slider,
.about-content,
.about-image,
.contact-content {
  animation: softEnter 0.9s ease both;
}

.hero-image,
.journal-list,
.collection-grid,
.artwork-slider,
.about-image {
  animation-delay: 0.12s;
}

@keyframes softEnter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* IMAGE HOVER */

.work-card img,
.collection-work img,
.archive-image img {
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.work-card:hover img,
.collection-work:hover img,
.archive-image:hover img {
  transform: scale(1.015);
}