@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400&display=swap');

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

:root {
  --bg:        #c2b898;
  --surface:   #b6ac88;
  --border:    #a09070;
  --text:      #1a2744;
  --muted:     #6b5d4f;
  --gold:      #b8943f;
  --gold-pale: #c9a050;
  --gold-dim:  #9a7420;
  --lapis:     #192860;
  --lapis-text:#bfccdf;
  --pad:       5vw;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: var(--lapis);
  transition: background 0.4s, border-color 0.4s;
}

nav.scrolled {
  background: var(--lapis);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--gold-pale);
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-right > a,
.nav-dropdown > button {
  color: var(--lapis-text);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-right > a:hover,
.nav-right > a.active,
.nav-dropdown:hover > button {
  color: #fff;
}

.nav-right > a.active { color: var(--gold-pale); }

/* dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--lapis);
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 200px;
  padding: 0.5rem 0;
  padding-top: 12px;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

/* Bridge: fills the space between button bottom and dropdown top */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 12px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  color: var(--lapis-text);
  transition: color 0.15s, background 0.15s;
}

.dropdown-menu a:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
}

.dropdown-menu a.current-page {
  color: #f0d060;
}

/* mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 60px;
  background: var(--lapis);
  z-index: 190;
  flex-direction: column;
  padding: 2rem 3rem;
  gap: 0.2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  color: var(--lapis-text);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }

/* ── HERO (landing page) ─────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.85);
  transform-origin: center center;
  animation: heroZoom 16s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.04); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,7,0.85) 0%,
    rgba(8,8,7,0.1) 50%,
    transparent 100%
  );
}

.hero-content {
  position: absolute;
  bottom: 10vh;
  left: 0;
  right: 0;
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.hero-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3.6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.6rem, 1.1vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.55rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 0 1rem;
  width: 90%;
  max-width: 340px;
}
.hero-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  display: block;
}
.hero-divider-gem {
  color: var(--text);
  font-size: 0.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-tagline {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.5rem, 0.85vw, 0.65rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0;
}

/* Calligraphy SVG in hero */
.hero-calligraphy {
  width: 280px;
  max-width: 80%;
  margin-bottom: 1.5rem;
}
.hero-calligraphy img {
  width: 100%;
  height: auto;
  display: block;
  filter: invert(48%) sepia(55%) saturate(500%) hue-rotate(5deg) brightness(0.78);
}

/* Main hero — split layout */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero--split .hero-img,
.hero--split .hero-overlay { display: none; }

.hero--split .hero-content {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5vw 6rem;
  background: var(--bg);
}

.hero--split .split-img-panel {
  position: relative;
  overflow: hidden;
}

.hero--split .split-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) saturate(0.95);
  animation: heroZoom 16s ease-in-out infinite alternate;
  display: block;
}

.hero--split .scroll-hint {
  position: absolute;
  bottom: 3.5vh;
  left: 25%; /* centre of the left text panel */
}

@media (max-width: 768px) {
  .hero--split {
    grid-template-columns: 1fr;
  }
  .hero--split .split-img-panel {
    height: 60vw;
    min-height: 260px;
  }
  .hero--split .scroll-hint { left: 50%; }
}

.scroll-hint {
  position: absolute;
  bottom: 3.5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
}

@keyframes scrollBounce {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(5px); }
}

/* ── LANDING SECTIONS ────────────────────────────────── */
.section {
  padding: 8rem 5vw;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 60px;
  background: var(--text);
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

/* ── SINGLE FEATURED IMAGE (landing page) ───────────── */
.featured-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 5vw 6rem;
  gap: 2rem;
}

.fs-frame {
  position: relative;
  border: 1px solid var(--gold-dim);
  padding: 14px;
  /* Corner accents via pseudo-elements */
}

.fs-frame::before,
.fs-frame::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(200, 169, 106, 0.25);
  pointer-events: none;
}

.fs-frame::after {
  inset: 9px;
  border-color: rgba(200, 169, 106, 0.12);
}

.fs-mat {
  background: #060504;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-mat img {
  display: block;
  max-width: min(792px, 96vw);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.95);
}

.fs-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fs-caption .fs-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
}

.fs-caption .fs-meta {
  font-size: 0.72rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fs-readmore {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

/* ── FEATURED WORKS (landing page) ──────────────────── */
.featured-works {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 3.5rem 3rem;
  margin-top: 4rem;
}

/* Diagonal asymmetry: large-small / large-small (lovers in narrow col) */
.fw-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.fw-item:nth-child(2) { grid-column: 2; grid-row: 1; align-self: end; }
.fw-item:nth-child(3) { grid-column: 2; grid-row: 2; align-self: start; }
.fw-item:nth-child(4) { grid-column: 1; grid-row: 2; }

.fw-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fw-img-wrap {
  overflow: hidden;
  position: relative;
}

/* Fixed heights per row so both paintings in each row match vertically */
/* Row 1: Ascension + Thesis */
.fw-item:nth-child(1) .fw-img-wrap,
.fw-item:nth-child(2) .fw-img-wrap {
  height: 460px;
}
/* Row 2: Rehm Be-Rehm + Lovers — shorter to suit Lovers' lower resolution */
.fw-item:nth-child(4) .fw-img-wrap,
.fw-item:nth-child(3) .fw-img-wrap {
  height: 320px;
  max-width: unset;
}

.fw-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.9);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.5s ease;
}

.fw-item:hover .fw-img-wrap img {
  transform: scale(1.03);
  filter: brightness(1) saturate(1);
}

.fw-caption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.1rem;
}

.fw-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.02em;
}

.fw-meta {
  font-size: 0.7rem;
  color: var(--gold-dim);
  letter-spacing: 0.08em;
}

/* About label row with photo (landing page) */
.about-label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}
.about-label-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) brightness(0.88);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.about-label-row .section-label {
  margin-bottom: 0;
}

/* Zinda Dargore thumbnail strip */
.zd-thumbs-section {
  padding: 2.5rem var(--pad) 0;
  max-width: 1400px;
  margin: 0 auto;
}
.zd-thumbs-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}
.zd-thumbs {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.zd-thumb {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.zd-thumb img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 1px solid var(--border);
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.75;
}
.zd-thumb:hover img {
  border-color: var(--gold-dim);
  opacity: 1;
}
.zd-thumb span {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  max-width: 90px;
  line-height: 1.3;
}

/* About text block (landing page) */
.about-text-block {
  max-width: 700px;
  border-top: 1px solid var(--border);
  padding-top: 5rem;
}

.about-text-block .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}

.about-text-block p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* About teaser (legacy, kept for reference) */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 6rem;
}

.about-teaser-img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(30%) brightness(0.8);
}

.about-teaser-text {
  padding: 2rem 0;
}

.about-teaser-text .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.about-teaser-text p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2rem;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}

.link-arrow:hover { color: var(--gold-pale); border-color: var(--gold); }
.link-arrow::after { content: '→'; font-size: 0.8rem; }

/* ── GALLERY PAGES ───────────────────────────────────── */
.gallery-hero {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}

.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
}

.gallery-hero-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 5vw 4rem;
}

.gallery-hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.gallery-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.01em;
}

.gallery-hero-desc {
  max-width: 540px;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Gallery hero — split layout (image right, text left) */
.gallery-hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 60px;
  position: static;
  height: auto;
  overflow: visible;
}

.gallery-hero--split img {
  display: none; /* image moved into img-panel */
}

.gallery-hero--split .gallery-hero-overlay { display: none; }

.gallery-hero--split .gallery-hero-text {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5vw 5rem 5vw;
  background: var(--bg);
}

.gallery-hero--split .gallery-hero-title {
  font-size: clamp(2.2rem, 4vw, 5rem);
}

.split-img-panel {
  overflow: hidden;
  position: relative;
}

.split-img-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) saturate(0.95);
  display: block;
}

@media (max-width: 768px) {
  .gallery-hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-img-panel {
    height: 55vw;
    min-height: 260px;
  }
}

/* Gallery hero with no background image */
.gallery-hero--no-img {
  background: var(--surface);
  height: 50vh;
}
.gallery-hero--no-img .gallery-hero-text {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  padding-top: 80px;
}

/* ── ARTIST STATEMENT (Pathos Within) ──────────────────── */
.pw-statement {
  padding: 5rem var(--pad);
  max-width: 760px;
  margin: 0 auto;
}

.pw-statement-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.pw-statement-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pw-statement-block {
  margin-bottom: 2.5rem;
}

.pw-statement-heading {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  margin-bottom: 0.9rem;
}

.pw-statement p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.pw-statement-quote {
  border-left: 2px solid var(--gold-dim);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--text);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* Main gallery — masonry / gallery wall */
.gallery {
  columns: 3 280px;
  column-gap: 1.4rem;
  padding: 3rem 4vw 5rem;
}

.g-item {
  break-inside: avoid;
  margin-bottom: 1.4rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: transparent;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

/* size classes no longer control layout — columns handles it */
.g-item.s1,
.g-item.s2,
.g-item.s3,
.g-item.s4,
.g-item.s5,
.g-item.s6 { grid-column: unset; }

.g-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.92) saturate(0.9);
  transition: filter 0.4s ease;
}

.g-item:hover img {
  filter: brightness(1) saturate(1);
}

.g-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(6,5,4,0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.2rem 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.g-item:hover .g-caption { opacity: 1; }

.g-caption .g-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #edeae0;
  line-height: 1.25;
}

.g-caption .g-meta {
  font-size: 0.7rem;
  color: #c9a050;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw 8rem;
}

.about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 0;
  gap: 0;
}

.about-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.about-photo {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) brightness(0.88);
  border: 1px solid var(--border);
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}

.about-text .subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.about-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 1.1rem;
  max-width: 660px;
  text-align: left;
}

.artist-statement {
  padding: 2rem 0 4rem;
  border-bottom: 1px solid var(--border);
  max-width: 760px;
}


.artist-statement p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 1.4rem;
}

.artist-statement p em {
  color: var(--text);
  font-style: italic;
}

.about-cv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
}

.cv-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.cv-item {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cv-item .cv-year {
  font-size: 0.7rem;
  color: var(--gold-dim);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.1rem;
}

.cv-item .cv-name {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.4;
}

.cv-item .cv-detail {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-visual {
  position: relative;
  overflow: hidden;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
}

.contact-visual-text {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
}

.contact-visual-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
}

.contact-visual-text p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.8rem;
  letter-spacing: 0.06em;
}

.contact-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5vw 4rem;
}

.contact-form-side .section-label { margin-bottom: 2rem; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  max-width: 440px;
}

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

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

.form-group label {
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
}

.form-group textarea { resize: none; min-height: 110px; }

.btn-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: none;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-submit:hover { background: var(--gold-dim); color: var(--bg); }

/* ── LIGHTBOX ────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(5, 4, 3, 0.97);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

#lightbox.open { display: flex; }

.lb-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  width: 90vw;
  max-width: 1300px;
  height: 88vh;
  cursor: default;
  gap: 3rem;
  align-items: center;
}

.lb-img-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
}

.lb-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-left: 1px solid #1e2d55;
  padding-left: 3rem;
  height: 100%;
}

.lb-info .lb-num {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9a7a45;
}

.lb-info .lb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: #edeae0;
  line-height: 1.2;
}

.lb-info .lb-meta {
  font-size: 0.75rem;
  color: #c9a050;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.lb-info .lb-desc {
  font-size: 0.83rem;
  color: #c8bab0;
  line-height: 1.85;
  font-style: italic;
}

.lb-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.lb-nav button {
  background: none;
  border: 1px solid #1e2d55;
  color: #c8bab0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lb-nav button:hover { border-color: #c8bab0; color: #edeae0; }

#lb-close {
  position: fixed;
  top: 1.8rem;
  right: 2rem;
  background: none;
  border: none;
  color: #c8bab0;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid #1e2d55;
  transition: color 0.2s, border-color 0.2s;
}
#lb-close:hover { color: #edeae0; border-color: #c8bab0; }

/* ── SCROLL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--lapis);
  padding: 2.5rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--lapis-text);
  letter-spacing: 0.1em;
  font-family: 'Cinzel', serif;
}

footer .footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold-pale);
  letter-spacing: 0.18em;
}

footer a { color: var(--lapis-text); transition: color 0.2s; }
footer a:hover { color: #fff; }

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 1; }
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .lb-inner {
    grid-template-columns: 1fr;
    height: auto;
    max-height: 95vh;
    overflow-y: auto;
    align-items: start;
    gap: 1.5rem;
    padding: 4rem 2rem 2rem;
    width: 95vw;
  }
  .lb-info {
    border-left: none;
    border-top: 1px solid #1e2d55;
    padding-left: 0;
    padding-top: 1.5rem;
    height: auto;
  }
  .lb-img-wrap { height: 55vh; }
}

@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; }

  .hero-name { font-size: clamp(1.4rem, 7vw, 2.8rem); }

  .featured-works {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .about-teaser { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .about-photo-wrap { position: static; }
  .about-photo { width: 140px; height: 140px; }
  .about-cv { grid-template-columns: 1fr; gap: 2.5rem; }

  .contact-page { grid-template-columns: 1fr; }
  .contact-visual { display: none; }
  .contact-form-side { padding-top: 100px; min-height: 100vh; }

  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g-item.s1 { grid-column: span 3; }
  .g-item.s2 { grid-column: span 6; }
  .g-item.s3 { grid-column: span 6; }
  .g-item.s4 { grid-column: span 6; }
  .g-item.s5 { grid-column: span 3; }
  .g-item.s6 { grid-column: span 6; }
}

@media (max-width: 560px) {
  .featured-works {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fw-item:nth-child(1),
  .fw-item:nth-child(2),
  .fw-item:nth-child(3),
  .fw-item:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }

  footer { flex-direction: column; gap: 0.8rem; text-align: center; }

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

  .gallery { grid-template-columns: repeat(4, 1fr); }
  .g-item.s1, .g-item.s5 { grid-column: span 2; }
  .g-item.s2, .g-item.s3, .g-item.s4, .g-item.s6 { grid-column: span 4; }
}
