/* ============================================================
   RON ZOHAR PORTFOLIO — COMPLETE STYLESHEET
   ============================================================ */

/* --- Google Fonts loaded via <link> in HTML for non-blocking rendering --- */

/* --- CSS Custom Properties --- */
:root {
  --bg-dark: #0A0A0A;
  --bg-light: #F9F7F2;
  --text-dark: #FFFFFF;
  --text-light: #1A1A1A;
  --text-muted-light: #5E5E5E;
  --border-light: #E8E4DC;
  --font-serif: 'Bodoni Moda', serif;
  --font-sans: 'Jost', sans-serif;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-weight: 300; line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-serif); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Dark / Light Page Base --- */
.page-dark { background-color: var(--bg-dark); color: var(--text-dark); min-height: 100vh; }
.page-light { background-color: var(--bg-light); color: var(--text-light); min-height: 100vh; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: linear-gradient(to bottom, rgba(0,0,0,0.50), transparent);
}

#site-header.scrolled {
  background: rgba(10,10,10,0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
}
@media (min-width: 768px) {
  .header-inner { padding: 0 3rem; height: 5rem; }
}

.logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.logo:hover { color: rgba(255,255,255,0.70); }
@media (min-width: 768px) {
  .logo { font-size: 1.25rem; }
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  transition: color 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active { color: #fff; }

.desktop-nav a.nav-serie {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-serie-label {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  margin-bottom: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 1.5rem;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
}

/* Mobile Drawer */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.40);
  z-index: 30;
}
.mobile-backdrop.open { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 16rem;
  height: 100%;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2.5rem;
  gap: 1.5rem;
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer a {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  transition: color 0.3s ease;
}
.mobile-drawer a:hover,
.mobile-drawer a.active { color: #fff; }

.mobile-drawer a.nav-serie {
  display: flex;
  flex-direction: column;
}

.drawer-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.70);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none;
}

/* ============================================================
   SCROLL FADE-IN
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered fade-in delays for child elements */
.fade-in-stagger > *:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger > *:nth-child(3) { transition-delay: 0.2s; }

/* ── HERO SLIDE TEXT ENTRANCE ───────────────────────────── */
@keyframes slideTextIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideTextOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-16px); }
}
.slide-content-inner {
  max-width: 48rem;
  animation: slideTextIn 0.9s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s both;
}
.slide.leaving .slide-content-inner {
  animation: slideTextOut 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* ── ABOUT HERO ENTRANCE ─────────────────────────────────── */
@keyframes heroScaleIn {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

.about-hero img {
  animation: heroScaleIn 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

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

.about-hero-name {
  animation: fadeSlideUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s both;
}
.about-hero-label {
  animation: fadeSlideUp 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.8s both;
}

/* ── HERO SLIDE KEN BURNS ───────────────────────────────── */
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.slide-img.kb-play {
  animation: kenBurns 7s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* ============================================================
   HERO SLIDESHOW (index.html)
   ============================================================ */
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.20));
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

.slide-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2rem;
}

.slide-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .slide-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .slide-title { font-size: 3.75rem; }
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  transition: color var(--transition-base);
}
.slide-cta:hover { color: #fff; }

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 5;
}
@media (min-width: 768px) {
  .slide-dots { right: 3rem; }
}

.slide-dot {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.35);
  transition: all 0.5s ease;
  cursor: pointer;
  width: 6px;
  border: none;
  padding: 0;
}
.slide-dot.active {
  width: 24px;
  background: #fff;
}

/* ============================================================
   STRIP GALLERY (index.html)
   ============================================================ */
.strip-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 42vh;
  overflow: hidden;
}

.strip-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.strip-item:hover img { transform: scale(1.06); }

.strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
  opacity: 0;
  transition: opacity var(--transition-slow);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
}
.strip-item:hover .strip-overlay { opacity: 1; }

.strip-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: #fff;
}

/* ============================================================
   QUOTE SECTION (index.html)
   ============================================================ */
.quote-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.quote-text {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  max-width: 48rem;
  padding: 0 1.5rem;
  white-space: pre-line;
}
@media (min-width: 768px) {
  .quote-text { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .quote-text { font-size: 4.5rem; }
}

/* ============================================================
   SERIES TILES (index.html)
   ============================================================ */
.section-pad {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .section-pad { padding: 4rem 3rem; }
}

.section-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 3rem;
}

.series-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .series-grid { grid-template-columns: repeat(3, 1fr); }
}

.series-tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.series-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.series-tile:hover img { transform: scale(1.05); }

.series-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-slow);
}
.series-tile:hover .series-tile-overlay { background: rgba(0,0,0,0.20); }
.series-tile-sub { display: none; }

.series-tile-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .series-tile-title { font-size: 1.875rem; }
}

.view-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.view-all-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.30);
  padding: 0.75rem 2rem;
  transition: color var(--transition-base), border-color var(--transition-base);
}
.view-all-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.70);
}

/* ============================================================
   GALLERY PAGE HEADER (animal, human, sculptography)
   ============================================================ */
.gallery-header {
  max-width: 80rem;
  margin: 0 auto;
  padding: 9rem 1.5rem 2rem;
}
@media (min-width: 768px) {
  .gallery-header { padding-left: 3rem; padding-right: 3rem; }
}

.gallery-header h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .gallery-header h1 { font-size: 6rem; line-height: 1.25; }
}

.gallery-header .page-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 0.75rem;
  display: block;
}

/* Shared page-label for light pages */
.page-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
  display: block;
}

.gallery-header .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: rgba(255,255,255,0.50);
  margin-top: 1rem;
}

/* Red dot legend */
.sold-legend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}
.sold-dot-legend {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  flex-shrink: 0;
}

/* ============================================================
   SCULPTURE GRID
   ============================================================ */
.sculpture-grid-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem 8rem;
}
@media (min-width: 768px) {
  .sculpture-grid-wrap { padding-left: 3rem; padding-right: 3rem; }
}

.grid-separator {
  border: none;
  margin-top: 4rem;
}

.sculpture-grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1.5rem;
  row-gap: 3rem;
  border-top: 1px solid #ffffff1a;
  padding-top: 4rem;
}
@media (min-width: 640px) {
  .sculpture-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .sculpture-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   SCULPTURE CARD
   ============================================================ */
.sculpture-card {
  position: relative;
  cursor: pointer;
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0A0A0A;
  border: 1px solid hsl(40, 10%, 85%);
  transition: box-shadow 0.5s ease;
}
.sculpture-card:hover .card-image-wrap {
  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}

.card-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.card-image-wrap img.active { opacity: 1; }

/* Sold red dot */
.sold-indicator {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #EF4444;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.sculpture-card[data-sold="true"] .sold-indicator { display: block; }

/* Card image fade-in when parent becomes visible */
.sculpture-card.visible .card-image-wrap img.active {
  transition: opacity 0.65s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Hover overlay */
.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.20) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  pointer-events: none;
}
.sculpture-card:hover .card-hover-overlay { opacity: 1; }

.card-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}
.card-material {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}
.card-dims {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.50);
  margin-top: 2px;
}

/* Prev/Next arrow buttons */
.card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: rgba(0,0,0,0.40);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 15;
  border-radius: 50%;
  pointer-events: none;
  border: none;
}
.card-arrow.prev { left: 8px; }
.card-arrow.next { right: 8px; }
.sculpture-card:hover .card-arrow { opacity: 1; pointer-events: auto; }
.card-arrow:hover { background: rgba(0,0,0,0.70); }

/* Card dots */
.card-dots {
  display: none;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 12;
}
.card-dot {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.40);
  transition: width 0.3s ease, background 0.3s ease;
  width: 6px;
  border: none;
  padding: 0;
  cursor: pointer;
}
.card-dot.active {
  width: 16px;
  background: #fff;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#lightbox.open { display: flex; }

.lb-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90vw;
  height: 85vh;
}

#lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-select: none;
}

.lb-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  display: none;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
  cursor: pointer;
  z-index: 10;
  background: none;
  border: none;
}
.lb-close:hover { color: #fff; }
@media (min-width: 768px) {
  .lb-close { display: flex; }
}

.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 10;
  border: none;
}
.lb-arrow:hover { background: rgba(255,255,255,0.25); }
.lb-arrow.prev { left: 1.5rem; }
.lb-arrow.next { right: 1.5rem; }
.lb-arrow[hidden] { display: none; }

.lb-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  text-align: left;
  pointer-events: none;
  white-space: nowrap;
}

.lb-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0;
}
.lb-material {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.025em;
  color: rgba(255,255,255,0.50);
  margin-bottom: 0.25rem;
}
.lb-dims {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.75rem;
}

.lb-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: auto;
}
.lb-dot {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.40);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 6px;
  border: none;
  padding: 0;
}
.lb-dot.active {
  width: 20px;
  background: #fff;
}

.lb-hint {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  white-space: nowrap;
  transition: opacity 1s ease;
  pointer-events: none;
  text-align: center;
}
.lb-hint.fade-out { opacity: 0; }
@media (min-width: 768px) {
  .lb-hint { display: none; }
}

/* ============================================================
   PHOTO CARDS (sculptography.html)
   ============================================================ */
.photo-grid-wrap {
  max-width: 80rem;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 4rem 1.5rem 6rem;
}
@media (min-width: 768px) {
  .photo-grid-wrap { padding-left: 3rem; padding-right: 3rem; }
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (min-width: 768px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}

.photo-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.7s ease;
  opacity: 0;
}
.photo-card.visible img { opacity: 1; }
.photo-card:hover img { transform: scale(1.07); }

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  pointer-events: none;
}
.photo-card:hover .photo-card-overlay { opacity: 1; }

.photo-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 0.25rem;
}
.photo-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.025em;
  color: rgba(255,255,255,0.60);
}

/* Grouped layout (new sculptography) */
.photo-groups-wrap {
  max-width: 80rem;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 4rem 1.5rem 6rem;
}
@media (min-width: 768px) {
  .photo-groups-wrap { padding-left: 3rem; padding-right: 3rem; }
}

.photo-groups {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.photo-group {
  display: grid;
  gap: 1.5rem;
}
.photo-group-1 { grid-template-columns: 1fr; }
.photo-group-2 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .photo-group-2 { grid-template-columns: repeat(2, 1fr); }
}

.photo-groups .photo-card {
  aspect-ratio: auto;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
}
.photo-groups .photo-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transform: none;
  transition: opacity 0.7s ease;
}
.photo-groups .photo-card.visible img { opacity: 1; }
.photo-groups .photo-card:hover img {
  opacity: 0.8;
  transform: none;
}

.photo-info {
  margin-top: 0.75rem;
  padding-bottom: 0.25rem;
}
.photo-info .photo-title {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 0.15rem;
}
.photo-info .photo-meta {
  color: rgba(255,255,255,0.40);
  margin-top: 0.125rem;
}
.photo-price {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.60);
  margin-top: 0.25rem;
}

/* ============================================================
   EXHIBITIONS (light bg)
   ============================================================ */
.exhibitions-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 1.5rem 2rem;
}
@media (min-width: 768px) {
  .exhibitions-wrap { padding-left: 3rem; padding-right: 3rem; }
}

.exh-page-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
  display: block;
}

.exh-page-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.75rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .exh-page-title { font-size: 6rem; line-height: 1; }
}

.exh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  row-gap: 4rem;
  margin-bottom: 6rem;
}

.exh-grid-bordered {
  border-top: 1px solid #E8E4DC;
  padding-top: 4rem;
}

.timeline-section {
  border-top: 1px solid #E8E4DC;
  padding-top: 4rem;
}

.exh-card {
  display: flex;
  flex-direction: column;
}

.exh-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ddd;
  margin-bottom: 0;
}

.exh-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.7s ease;
}
.exh-card.visible .exh-img-wrap img { opacity: 1; }
.exh-card:hover .exh-img-wrap img { transform: scale(1.04); }

.exh-card-year {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted-light);
  margin-bottom: 0.25rem;
  margin-top: 1rem;
}

.exh-card-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.exh-card-sub {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted-light);
  margin-top: 0.25rem;
}

/* Timeline */
.timeline-section-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 2.5rem;
  display: block;
}

.timeline-row {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #E8E4DC;
  transition: background 0.2s ease;
  cursor: default;
  margin: 0 -0.5rem;
}
@media (min-width: 768px) {
  .timeline-row { gap: 3rem; }
}
.timeline-row:hover { background: #F0EDE6; }

.timeline-date {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1A1A1A;
  flex-shrink: 0;
  width: 9rem;
}
@media (min-width: 768px) {
  .timeline-date { width: 12rem; }
}
.timeline-event {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

/* ============================================================
   ABOUT (light bg)
   ============================================================ */
.about-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  background: #222;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}

.about-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(249,247,242,0.70), transparent);
}

.about-hero-text {
  position: absolute;
  bottom: 3rem;
  left: 1.5rem;
}
@media (min-width: 768px) {
  .about-hero-text { left: 3rem; }
}

.about-hero-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.25;
}
@media (min-width: 768px) {
  .about-hero-name { font-size: 4.5rem; }
}

.about-hero-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-top: 0.5rem;
}

.about-body {
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 6rem;
}
@media (min-width: 768px) {
  .about-body { padding-left: 3rem; padding-right: 3rem; }
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .about-cols { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.about-col-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 2rem;
}

.about-pullquote {
  border-left: 2px solid #C8C4BC;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #1A1A1A;
}

.about-para {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: #3A3A3A;
  margin-bottom: 1.5rem;
}

.about-closing {
  border-top: 1px solid #E8E4DC;
  padding-top: 2rem;
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted-light);
}

.about-bg-item {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.9;
  color: #3A3A3A;
  margin-bottom: 1.25rem;
}

.about-subsection-border {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #E8E4DC;
}

/* Recognition */
.recognition-section {
  margin-bottom: 3rem;
}

.recognition-section h2 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 1rem;
}

.recognition-item {
  padding: 1rem 0;
}

.recognition-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.recognition-detail {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-muted-light);
}

.about-contact-section {
  padding-top: 2rem;
  border-top: 1px solid #E8E4DC;
  margin-top: 3rem;
}

.about-contact-section h2 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 1rem;
}

.about-contact-link {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  transition: color var(--transition-base), letter-spacing 0.3s ease;
}
.about-contact-link:hover { color: var(--text-muted-light); letter-spacing: 0.02em; }

/* ============================================================
   STUDIO (light bg)
   ============================================================ */
.studio-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 1.5rem 0;
}
@media (min-width: 768px) {
  .studio-wrap { padding-left: 3rem; padding-right: 3rem; }
}

.studio-header {
  margin-bottom: 0;
  padding-bottom: 0;
}

.studio-content-section {
  border-top: 1px solid #E8E4DC;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.studio-header h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.75rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .studio-header h1 { font-size: 6rem; line-height: 1; }
}

.studio-header .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: rgba(30,30,30,0.50);
}

.studio-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.studio-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #ddd;
}

.studio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.studio-img-wrap.visible img,
.fade-in.visible .studio-img-wrap img { opacity: 1; }

.studio-right-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 2rem;
  display: block;
}

.studio-para {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted-light);
  margin-bottom: 1.25rem;
  max-width: 24rem;
}

.studio-enquire {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #E8E4DC;
}

.studio-enquire h3 {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 0.75rem;
}

.studio-link {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  transition: color var(--transition-base), letter-spacing 0.3s ease;
}
.studio-link:hover { color: var(--text-muted-light); letter-spacing: 0.02em; }

.studio-phone {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-muted-light);
  margin-top: 0.25rem;
}

.studio-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.studio-img-sq {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ddd;
}

.studio-img-sq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.7s ease;
}
.studio-img-sq.visible img,
.fade-in.visible .studio-img-sq img { opacity: 1; }
.studio-img-sq:hover img { transform: scale(1.04); }

/* ============================================================
   CONTACT (light bg)
   ============================================================ */
.contact-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 768px) {
  .contact-wrap { padding-left: 3rem; padding-right: 3rem; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.contact-left-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
}

.contact-left h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .contact-left h1 { font-size: 3.75rem; }
}

.contact-detail {
  margin-bottom: 0;
}
.contact-detail-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 0.5rem;
}
.contact-detail-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-light);
  transition: color var(--transition-base);
  display: block;
}
a.contact-detail-value {
  transition: color var(--transition-base), letter-spacing 0.3s ease;
}
a.contact-detail-value:hover { color: var(--text-muted-light); letter-spacing: 0.02em; }

.contact-detail-space {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.contact-divider {
  height: 1px;
  background: #E8E4DC;
  width: 5rem;
  margin: 2rem 0;
}

.contact-social-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.contact-social-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  transform: translateY(0);
  transition: color var(--transition-base), transform 0.2s ease;
}
.contact-social-link:hover { color: var(--text-light); transform: translateY(-2px); }

/* Contact form */
.contact-right-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label { display: none; }

.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #E8E4DC;
  padding-bottom: 0.75rem;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.875rem;
  color: #1A1A1A;
  transition: border-color var(--transition-base);
  resize: none;
  border-radius: 0;
}

.form-group textarea { padding-top: 0; }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0AAA0;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1A1A1A;
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: #c45e4a;
}

.form-error-msg {
  color: #c45e4a;
  font-size: 0.82rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.form-error-msg.visible { opacity: 1; }

.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color var(--transition-base);
}
.form-submit:hover { color: var(--text-muted-light); }
.form-submit-line {
  display: block;
  height: 1px;
  width: 2rem;
  background: currentColor;
  transition: width var(--transition-base);
}
.form-submit:hover .form-submit-line { width: 3.5rem; }

.form-success {
  display: none;
  padding: 4rem 0;
}
.form-success.visible { display: block; }
.form-success h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.875rem;
  color: #1A1A1A;
  margin-bottom: 0.75rem;
}
.form-success p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-muted-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #F8F6F2;
  border-top: 1px solid #E0DCD5;
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  #site-footer { padding-left: 3rem; padding-right: 3rem; }
}

/* Newsletter section */
.footer-newsletter-wrap {
  max-width: 80rem;
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #E8E4DC;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .newsletter-form { flex-direction: row; }
}

.newsletter-input {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #C8C4BC;
  padding-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.875rem;
  color: #1A1A1A;
  outline: none;
  transition: border-color 0.3s ease;
}
.newsletter-input::placeholder { color: #B0AAA0; }
.newsletter-input:focus { border-color: #1A1A1A; }

.newsletter-btn {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5E5E5E;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s ease;
  padding: 0;
}
.newsletter-btn:hover { color: #1A1A1A; }

.newsletter-success {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.125rem;
  color: #5E5E5E;
  text-align: center;
}
.newsletter-success.visible { display: block; }

/* Footer bottom row */
.footer-bottom-row {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-bottom-row { flex-direction: row; justify-content: space-between; }
}

.footer-identity {
  text-align: center;
}
@media (min-width: 768px) {
  .footer-identity { text-align: left; }
}

.footer-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: #1A1A1A;
  margin-bottom: 0.25rem;
  line-height: 1.75rem;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5E5E5E;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5E5E5E;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #1A1A1A; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .sculpture-grid { grid-template-columns: repeat(2, 1fr); }
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .exh-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-two-col { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }

  .section-pad { padding: 3rem 1.25rem; }
  .photo-grid-wrap { padding: 4rem 1.25rem 4rem; }

  .strip-gallery { grid-template-columns: repeat(3, 1fr); height: 30vh; }
  .strip-gallery .strip-item:nth-child(4),
  .strip-gallery .strip-item:nth-child(5) { display: none; }

  .sculpture-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .series-grid { grid-template-columns: 1fr; }
  .exh-grid { grid-template-columns: 1fr; }

  .exhibitions-wrap { padding: 6rem 1.25rem 2rem; }
  .about-body { padding: 3rem 1.25rem 4rem; }
  .studio-wrap { padding: 6rem 1.25rem 0; }
  .contact-wrap { padding: 6rem 1.25rem 4rem; }

  .form-row { grid-template-columns: 1fr; }

  .studio-img-grid { grid-template-columns: 1fr; }

  .lb-image-wrap { width: 95vw; height: 80vh; }
  .lb-arrow.prev { left: 0.5rem; }
  .lb-arrow.next { right: 0.5rem; }
}

@media (max-width: 480px) {
  .sculpture-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .timeline-row { flex-direction: column; gap: 0.15rem; }
  .studio-img-grid { grid-template-columns: 1fr; }
  .exh-grid { grid-template-columns: 1fr; }
}
