* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111111;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */

.site-header {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 30px 40px;
}

.site-title {
  font-size: 20px;
  line-height: 1.1;
  flex: 0 0 auto;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* NAVIGATION */

.site-nav {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: nowrap;
  margin-left: auto;
}

.site-nav > a,
.site-nav > .menu-item {
  display: flex;
  align-items: center;
  height: 24px;
}

.site-nav a {
  text-decoration: none;
  color: #111111;
  font-size: 12.5px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.site-nav a:hover {
  opacity: 0.5;
}

.site-nav a.active-link,
.site-nav .menu-item > a.active-link,
.home-nav a.active-link,
.home-nav .menu-item > a.active-link {
  font-weight: 700 !important;
  opacity: 1 !important;
}

/* DROPDOWNS */

.menu-item {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 16px 18px;
  background: #ffffff;
  min-width: 220px;
  z-index: 100;
}

.dropdown a {
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
}

.dropdown a:last-child {
  margin-bottom: 0;
}

.menu-item:hover .dropdown {
  display: block;
}

/* BOOKS dropdown sağa yaslı açılsın */
.books-menu .books-dropdown {
  left: auto;
  right: 0;
  min-width: 360px;
  text-align: left;
}

/* PAGE LAYOUT */

.page {
  padding: 20px 40px 60px 40px;
}

.page-title {
  font-size: 13px;
  font-weight: 400;
  margin: 40px 0 40px 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* PROJECT PAGES */

.works {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 900px;
}

.works img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
}

/* TEXT PAGES */

.text-page {
  max-width: 760px;
  line-height: 1.6;
  font-size: 14px;
}

/* WORKS GRID / BOOKS GRID */

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
}

.work-card {
  text-decoration: none;
  color: #111111;
  display: block;
}

.work-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

.work-card span {
  font-size: 14px;
  line-height: 1.3;
}

.work-card:hover {
  opacity: 0.8;
}

/* HOME PAGE LAYOUT */

.home-page {
  min-height: 100vh;
}

.home-layout {
  min-height: 100vh;
  padding: 38px 52px 34px 52px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.9fr;
  grid-template-rows: auto 1fr auto;
  column-gap: 48px;
  row-gap: 20px;
}

.home-name {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  white-space: nowrap;
}

.home-nav {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.home-nav a {
  text-decoration: none;
  color: #111111;
  font-size: 12.5px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.home-nav a:hover {
  opacity: 0.5;
}

.home-nav .menu-item {
  position: relative;
}

.home-nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 16px 18px;
  background: #ffffff;
  min-width: 220px;
  z-index: 100;
}

.home-nav .dropdown a {
  display: block;
  margin-bottom: 8px;
  white-space: nowrap;
}

.home-nav .dropdown a:last-child {
  margin-bottom: 0;
}

.home-nav .menu-item:hover .dropdown {
  display: block;
}

.home-nav .books-menu .books-dropdown {
  left: auto;
  right: 0;
  min-width: 360px;
  text-align: left;
}

.home-bio {
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 330px;
  font-size: 14px;
  line-height: 1.45;
}

.home-image {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 520px;
}

.home-image a {
  display: block;
}

.home-image img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.home-image a:hover img {
  opacity: 0.85;
}

.home-label {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

.home-footer {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  justify-self: end;
  font-size: 12px;
  opacity: 0.7;
}

.home-page .site-header,
.home-page .page,
.home-page .page-title {
  all: unset;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .home-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    row-gap: 28px;
  }

  .home-name,
  .home-nav,
  .home-bio,
  .home-image,
  .home-label,
  .home-footer {
    grid-column: 1;
    justify-self: start;
  }

  .home-nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .home-image {
    max-width: 520px;
  }

  .home-label,
  .home-footer {
    justify-self: start;
  }
}  /* bunu kapat */

.site-footer {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 120px;
  padding: 0 40px 30px 40px;
  text-align: right;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.7;
} 

/* CONTACT PAGE */

.contact-page {
  padding: 80px 40px;
}

.contact-wrapper {
  max-width: 400px;
}

.contact-title {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 40px;
}

.contact-info a {
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
  color: #111111;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.contact-info a:hover {
  opacity: 0.5;
}
.exhibitions {
  margin-top: 150px;
  padding-top: 48px;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.section-title {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 28px;
}

.exhibition-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.exhibition-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  column-gap: 28px;
  align-items: baseline;
}

.ex-year {
  opacity: 0.35;
  font-size: 13px;
}

.ex-title {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  font-size: 14px;
}

.ex-meta {
  opacity: 0.55;
  font-size: 14px;
  text-align: right;
}

.ex-meta em {
  white-space: nowrap;
  font-style: italic;
  opacity: 0.6;
  margin-left: 4px;
}
.exhibition-row:hover .ex-title {
  opacity: 0.6;
}
/* WORKS PAGE CUSTOM GRID */

.works-grid-custom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
  max-width: 1100px;   /* 🔥 1320 yerine küçült */
  margin: 80px auto 0 auto;
}

.overlay-card {
  text-decoration: none;
  color: #111111;
}

.work-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f2f2;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  text-align: center;
  padding: 20px;
}

.work-title {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.work-year {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 6px;
}
.overlay-card:hover .work-thumb img {
  opacity: 0.28;
}

.overlay-card:hover .work-overlay {
  opacity: 1;
}
 .page {
  padding: 20px 40px 120px 40px; /* 🔥 alt padding artırıldı */
}
/* PROJECT DETAIL PAGE */

.project-page {
  padding: 20px 40px 120px 40px;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 420px;
  gap: 48px;
  align-items: start;
}

.project-gallery {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 820px;
}

.project-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.project-image-button img {
  display: block;
  width: 100%;
  height: auto;
}

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

.project-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.project-year,
.project-medium-line {
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}

.project-medium-line {
  margin-top: 4px;
}

.project-text {
  margin-top: 36px;
  max-width: 420px;
  font-size: 14px;
  line-height: 1.7;
}

.project-caption-block {
  margin-top: 48px;
}

.project-caption-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
  margin-bottom: 16px;
}

.caption-title {
  font-size: 14px;
  margin-bottom: 6px;
}

.caption-line {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
}

/* LIGHTBOX */

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.96);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image-wrap {
  position: relative;
  max-width: 88vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 88vh;
  display: block;
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.02em;
  opacity: 0.9;
  background: rgba(0, 0, 0, 0.28);
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 34px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #111111;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
  color: #111111;
  padding: 12px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}
.project-text p {
  margin-bottom: 18px;
  line-height: 1.6;
  max-width: 420px;
}
.caption-list div {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.75;
  font-style: italic;
}
.caption-list-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
  row-gap: 2px;
  margin-bottom: 14px;
}

.caption-list-two-col div {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.75;
  font-style: italic;
}
.leftover-gallery {
  align-items: center;
}

.leftover-gallery .project-image-button {
  max-width: 580px;
}

.leftover-gallery .project-image-button img {
  width: 100%;
  height: auto;
}
.kendimi-gallery {
  align-items: center;
  gap: 40px;
}

.kendimi-gallery .project-image-button {
  max-width: 620px;
}

.kendimi-gallery .project-image-button img {
  display: block;
  width: 100%;
  height: auto;
}
.kendimi-four-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 620px;
}

.kendimi-four-grid .project-image-button {
  width: 100%;
  max-width: none;
}

.kendimi-four-grid .project-image-button img {
  width: 100%;
  height: auto;
  display: block;
}
.video-wrapper {
  max-width: 720px;
  width: 100%;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.takinti-page .project-gallery {
  align-items: flex-start;
}
.video-wrapper video {
  filter: contrast(1.1) brightness(0.9) grayscale(100%);
}
.video-note {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
.double-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 1000px; /* büyüt */
}

.project-gallery {
  max-width: 1000px; /* genel gallery de büyüsün */
}

.double-grid .project-image-button {
  width: 100%;
  max-width: none;
}

.double-grid img {
  width: 100%;
  height: auto;
  display: block;
}
.double-grid-hero {
  max-width: 1200px;
  gap: 32px;
}

.double-grid-hero img {
  height: 70vh;
  object-fit: cover;
}
.arayis-single-small {
  max-width: 640px;
}

.arayis-single-small img {
  width: 100%;
  height: auto;
  display: block;
}
.fikret-gallery {
  max-width: 1000px;
}

.fikret-gallery .diptych-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 1000px;
}

.fikret-gallery .diptych-grid .project-image-button {
  width: 100%;
  max-width: none;
}

.fikret-gallery .diptych-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.fikret-gallery .fikret-single-horizontal {
  max-width: 1000px;
  width: 100%;
}

.fikret-gallery .fikret-single-horizontal img {
  width: 100%;
  height: auto;
  display: block;
}
.hayali-video-wrapper {
  max-width: 960px;
  width: 100%;
}

.hayali-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-note {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
.hayali-video-wrapper video {
  filter: none;
}
.contact-links {
  margin-top: 38px;
}

.contact-item {
  margin-bottom: 26px;
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 8px;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.contact-item a:hover {
  opacity: 0.55;
}
.last-call-gallery {
  max-width: 1000px;
  gap: 22px;
}

.last-call-gallery .diptych-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 1000px;
}

.last-call-gallery .diptych-grid .project-image-button {
  width: 100%;
  max-width: none;
}

.last-call-gallery .diptych-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.last-call-single-horizontal {
  max-width: 1000px;
  width: 100%;
}

.last-call-single-horizontal img {
  width: 100%;
  height: auto;
  display: block;
}
.doorstep-gallery {
  max-width: 1000px;
  gap: 22px;
}

.doorstep-diptych-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 1000px;
}

.doorstep-diptych-grid .project-image-button {
  width: 100%;
  max-width: none;
}

.doorstep-diptych-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.interactive-section {
  margin-top: 60px;
  width: 100%;
  max-width: 1000px;
}

.interactive-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 14px;
}

.interactive-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #f5f5f5;
}

.interactive-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.interactive-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  opacity: 0.65;
}

.interactive-link:hover {
  opacity: 1;
}
/* BOOKS PAGE */

.books-page {
  padding-bottom: 140px;
}

.books-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  max-width: 980px;
  margin: 80px auto 0 auto;
}

.book-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.book-cover {
  width: 100%;
  background: #f5f5f5;
  overflow: hidden;
}

.book-cover img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.book-card:hover .book-cover img {
  opacity: 0.75;
}

.book-info {
  margin-top: 18px;
}

.book-title {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.book-subtitle {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  opacity: 0.55;
}

@media (max-width: 900px) {
  .books-grid-custom {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}
/* BOOK DETAIL PAGES */

.book-gallery {
  max-width: 1000px;
  gap: 28px;
}

.book-video-wrapper {
  max-width: 1000px;
  width: 100%;
}

.book-video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
}

.book-image-button {
  max-width: 1000px;
  width: 100%;
}

.book-image-button img {
  width: 100%;
  height: auto;
  display: block;
}

.video-note {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
/* AŞURE BOOK PAGE */

.asure-book-gallery {
  max-width: 1000px;
  gap: 24px;
}

.book-diptych-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 1000px;
}

.book-diptych-grid .project-image-button {
  width: 100%;
  max-width: none;
}

.book-diptych-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.book-single-horizontal {
  max-width: 1000px;
  width: 100%;
}

.book-single-horizontal img {
  width: 100%;
  height: auto;
  display: block;
}
/* HOME SELECTED WORKS GRID */

.home-selected-grid {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: center;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;

  width: 100%;
  max-width: 620px;
}

.selected-work {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f3f3;
}

.selected-work img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.selected-work:hover img {
  opacity: 0.65;
}

@media (max-width: 900px) {
  .home-selected-grid {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: repeat(2, 1fr);
    max-width: 520px;
    justify-self: start;
  }
}
.home-image {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: center;

  width: min(56vw, 940px);
  height: min(72vh, 760px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.home-image a {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.home-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}
/* HOME FINAL LAYOUT FIX */

.home-layout {
  position: relative;
  min-height: 100vh;
  padding: 38px 52px 34px 52px;
  display: block;
}

.home-name {
  position: absolute;
  top: 38px;
  left: 52px;
}

.home-nav {
  position: absolute;
  top: 38px;
  right: 52px;
}

.home-bio {
  position: absolute;
  left: 52px;
  top: 50%;
  transform: translateY(-50%);
  width: 430px;
}

.home-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  
  width: 58vw;
  height: 74vh;
  max-width: 980px;
  max-height: 820px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.home-image a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.home-label {
  position: absolute;
  right: 170px;
  top: 50%;
  transform: translateY(-50%);
}

.home-footer {
  position: absolute;
  right: 52px;
  bottom: 34px;
}
/* HOME FINAL OVERRIDE */

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

.home-layout {
  position: relative;
  min-height: 100vh;
  padding: 38px 52px 34px 52px;
  display: block;
}

/* top left */
.home-name {
  position: absolute;
  top: 38px;
  left: 52px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  white-space: nowrap;
}

/* top right */
.home-nav {
  position: absolute;
  top: 38px;
  right: 52px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

/* left text */
.home-bio {
  position: absolute !important;
  left: 52px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 360px !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  text-align: left !important;
}

/* center slideshow */
.home-image {
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 56vw;
  height: 74vh;
  max-width: 960px;
  max-height: 800px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.home-image a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: pointer;
}

/* right label */
.home-label {
  position: absolute;
  right: 170px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* bottom right */
.home-footer {
  position: absolute;
  right: 52px;
  bottom: 34px;
  font-size: 12px;
  opacity: 0.7;
}

/* remove old bio line rules */
.home-bio .line-1,
.home-bio .line-2 {
  all: unset;
}
/* MOBILE FIX */

@media (max-width: 768px) {

  .site-header {
    display: block;
    padding: 28px 24px 20px 24px;
  }

  .site-title {
    font-size: 19px;
    margin-bottom: 22px;
  }

  .site-nav {
    margin-left: 0;
    gap: 16px;
    flex-wrap: wrap;
  }

  .site-nav a {
    font-size: 11.5px;
  }

  .project-page {
    padding: 20px 24px 80px 24px;
  }

  .project-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .project-info {
    position: static;
    order: 1;
    width: 100%;
  }

  .project-gallery {
    order: 2;
    width: 100%;
    max-width: 100%;
    gap: 28px;
  }

  .project-text,
  .project-text p {
    max-width: 100%;
  }

  .project-title {
    font-size: 17px;
    line-height: 1.35;
  }

  .project-year {
    font-size: 13px;
  }

  .project-image-button,
  .book-image-button,
  .book-single-horizontal {
    width: 100%;
    max-width: 100%;
  }
}
  .project-image-button img,
  .book-image-button img,
  .book-single-horizontal img {
    width: 100%;
    height: auto;
  }

@media (max-width: 768px) {
  .book-diptych-grid,
  .diptych-grid,
  .doorstep-diptych-grid,
  .double-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 100%;
    width: 100%;
  }

  .book-diptych-grid .project-image-button,
  .diptych-grid .project-image-button,
  .doorstep-diptych-grid .project-image-button,
  .double-grid .project-image-button {
    width: 100%;
    max-width: none;
  }

  .book-diptych-grid img,
  .diptych-grid img,
  .doorstep-diptych-grid img,
  .double-grid img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* HOME MOBILE FINAL FIX */

@media (max-width: 768px) {

  .home-page {
    min-height: 100vh !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .home-layout {
    position: relative !important;
    min-height: 100vh !important;
    padding: 34px 28px 28px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .home-name {
    position: static !important;
    order: 1 !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.06em !important;
    margin: 0 0 44px 0 !important;
    white-space: nowrap !important;
  }

  .home-nav {
    position: static !important;
    order: 2 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 0 78px 0 !important;
  }

  .home-nav a {
    font-size: 10.8px !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
  }

  .home-nav .menu-item {
    height: auto !important;
    display: flex !important;
    align-items: center !important;
  }

  .home-bio {
    position: static !important;
    order: 3 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 22px auto !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    text-align: center !important;
  }

  .home-label {
    position: static !important;
    order: 4 !important;
    transform: none !important;
    margin: 0 auto 42px auto !important;
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
    text-align: center !important;
    opacity: 0.62 !important;
  }

  .home-image {
    position: static !important;
    order: 5 !important;
    transform: none !important;
    width: 100% !important;
    height: 48vh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 auto 34px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .home-image a {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .home-image img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  .home-footer {
    position: static !important;
    order: 6 !important;
    margin: 0 auto !important;
    text-align: center !important;
    font-size: 11px !important;
    opacity: 0.7 !important;
  }
}
/* ABOUT MOBILE FINAL FIX */

@media (max-width: 768px) {
  .text-page {
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .text-page p {
    margin-bottom: 18px !important;
  }

  .exhibitions {
    margin-top: 36px !important;
    padding-top: 28px !important;
  }

  .section-title {
    font-size: 12px !important;
    margin-bottom: 20px !important;
  }

  .exhibition-list {
    gap: 18px !important;
  }

  .exhibition-row {
    display: block !important;
  }

  .ex-year {
    display: block !important;
    font-size: 12px !important;
    margin-bottom: 4px !important;
  }

  .ex-title {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 4px !important;
  }

  .ex-meta {
    display: block !important;
    text-align: left !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}
/* WORKS MOBILE FINAL */

@media (max-width: 768px) {
  .works-grid-custom {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px 22px !important;
    max-width: 100% !important;
    margin: 64px auto 0 auto !important;
  }

  .work-thumb {
    aspect-ratio: 1 / 1 !important;
  }

  .work-overlay {
    display: none !important;
  }

  .overlay-card:hover .work-thumb img {
    opacity: 1 !important;
  }

  .page {
    padding-bottom: 120px !important;
  }

}
/* MOBILE PROJECT FOOTER FIX */

@media (max-width: 768px) {
  .project-page + .site-footer {
    position: static !important;
    margin-top: 48px !important;
    padding: 0 24px 32px 24px !important;
    text-align: center !important;
    font-size: 10.5px !important;
    opacity: 0.65 !important;
    background: transparent !important;
  }

  .project-page {
    padding-bottom: 48px !important;
  }
}
/* MOBILE FOOTER FINAL FIX */

@media (max-width: 768px) {
  .site-footer {
    position: static !important;
    margin-top: 48px !important;
    padding: 0 24px 32px 24px !important;
    text-align: center !important;
    font-size: 10.5px !important;
    opacity: 0.65 !important;
    background: transparent !important;
  }

  .page {
    padding-bottom: 40px !important;
  }

  .project-page {
    padding-bottom: 40px !important;
  }

  .books-page {
    padding-bottom: 40px !important;
  }
}
/* HOME MOBILE COPYRIGHT FIX */

@media (max-width: 768px) {
  .home-footer {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    bottom: 22px !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    font-size: 10.5px !important;
    opacity: 0.65 !important;
    background: transparent !important;
    z-index: 50 !important;
  }

  .home-layout {
    padding-bottom: 70px !important;
  }
}
/* MOBILE HEADER UNIFY — ALL PAGES LIKE HOME */

@media (max-width: 768px) {

  .site-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 32px 28px 20px 28px !important;
  }

  .site-title {
    font-size: 18px !important;
    line-height: 1.15 !important;
    letter-spacing: 0.06em !important;
    margin: 0 0 44px 0 !important;
    white-space: nowrap !important;
  }

  .site-nav {
    width: 100% !important;
    margin-left: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0 !important;
  }

  .site-nav > a,
  .site-nav > .menu-item {
    height: auto !important;
    display: flex !important;
    align-items: center !important;
  }

  .site-nav a {
    font-size: 10.8px !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap !important;
  }

  .page {
    padding: 72px 28px 40px 28px !important;
  }

  .project-page {
    padding: 72px 28px 48px 28px !important;
  }
}
/* HOME MOBILE SPACING TUNE */

@media (max-width: 768px) {
  .home-nav {
    margin-bottom: 56px !important;
  }

  .home-bio {
    max-width: 300px !important;
    font-size: 11.5px !important;
    line-height: 1.5 !important;
    margin: 0 auto 14px auto !important;
  }

  .home-label {
    font-size: 10.8px !important;
    letter-spacing: 0.12em !important;
    margin: 0 auto 30px auto !important;
  }

  .home-image {
    height: 50vh !important;
    margin: 0 auto 24px auto !important;
  }

  .home-footer {
    font-size: 10px !important;
  }
}
/* HOME MOBILE SELECTED WORKS CLOSER TO IMAGE */

@media (max-width: 768px) {
  .home-label {
    margin: 0 auto 5px auto !important;
  }

  .home-image {
    margin: 0 auto 24px auto !important;
  }
}
/* MOBILE: DISABLE DROPDOWNS */

@media (max-width: 768px) {
  .site-nav .dropdown,
  .home-nav .dropdown {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .site-nav .menu-item:hover .dropdown,
  .home-nav .menu-item:hover .dropdown {
    display: none !important;
  }

  .site-nav .menu-item,
  .home-nav .menu-item {
    position: static !important;
  }

  .site-nav .menu-item > a,
  .home-nav .menu-item > a {
    pointer-events: auto !important;
  }
}
/* MOBILE WORKS SPACING TUNE */

@media (max-width: 768px) {
  .page-title {
    margin-top: 8px !important;
    margin-bottom: 36px !important;
  }

  .works-grid-custom {
    margin-top: 0 !important;
    gap: 28px 22px !important;
  }
}
/* MOBILE WORKS OVERLAY ENABLE */

@media (max-width: 768px) {
  .works-grid-custom .work-overlay {
    display: flex !important;
    opacity: 0 !important;
    pointer-events: none !important;
    background: rgba(255, 255, 255, 0.82) !important;
  }

  .works-grid-custom .work-title {
    font-size: 9.5px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.06em !important;
  }

  .works-grid-custom .work-year {
    font-size: 9px !important;
    margin-top: 4px !important;
  }

  .works-grid-custom .overlay-card:hover .work-thumb img,
  .works-grid-custom .overlay-card:active .work-thumb img,
  .works-grid-custom .overlay-card:focus .work-thumb img {
    opacity: 0.25 !important;
  }

  .works-grid-custom .overlay-card:hover .work-overlay,
  .works-grid-custom .overlay-card:active .work-overlay,
  .works-grid-custom .overlay-card:focus .work-overlay {
    opacity: 1 !important;
  }
}