/* ── Reset & Base ───────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #2a2a2a;
  background: #faf9f7;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ────────────────────────────────────────────────────── */

h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1.5rem;
}

p {
  font-size: 1rem;
  max-width: 560px;
}

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

/* ── Layout ────────────────────────────────────────────────────────── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Hero ──────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #faf9f7;
  position: relative;
}

.hero-content {
  padding: 2rem;
}

.hero-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid #eee;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: #888;
  margin-top: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: lowercase;
}

/* ── About ─────────────────────────────────────────────────────────── */

.about {
  padding: 6rem 0;
  background: #fff;
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.about-photo {
  flex-shrink: 0;
  width: 320px;
}

.about-photo img {
  width: 100%;
  border-radius: 4px;
}

.about-text {
  flex: 1;
}

.about p {
  color: #555;
  margin-bottom: 1rem;
}

.about p:last-child {
  margin-bottom: 0;
}

/* ── Gallery ───────────────────────────────────────────────────────── */

.gallery {
  padding: 6rem 0;
  background: #faf9f7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

/* ── Exhibitions ──────────────────────────────────────────────────── */

.exhibitions {
  padding: 6rem 0;
  background: #fff;
}

.exhibition-list {
  list-style: none;
  max-width: 560px;
  margin-top: 1rem;
}

.exhibition-list li {
  display: flex;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}

.exhibition-list li:last-child {
  border-bottom: none;
}

.exhibition-list .year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #999;
  flex-shrink: 0;
  width: 3rem;
}

.exhibition-list .details {
  color: #555;
  font-size: 0.95rem;
}

/* ── Buy / Links ──────────────────────────────────────────────────── */

.buy {
  padding: 6rem 0;
  background: #faf9f7;
  text-align: center;
}

/* ── Contact ───────────────────────────────────────────────────────── */

.contact {
  padding: 6rem 0;
  background: #fff;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}

.social-links a:hover {
  border-bottom-color: #2a2a2a;
}

/* ── Nav (floating) ────────────────────────────────────────────────── */

.nav {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 2rem;
  border-radius: 100px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 100;
}

.nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: #666;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #2a2a2a;
}

/* ── Footer ────────────────────────────────────────────────────────── */

footer {
  padding: 3rem 0 5rem;
  text-align: center;
  background: #faf9f7;
}

footer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: #bbb;
  letter-spacing: 0.1em;
  margin: 0 auto;
}

/* ── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .gallery-caption {
    opacity: 1;
    font-size: 0.85rem;
    padding: 1.5rem 0.5rem 0.5rem;
  }

  .nav {
    bottom: 1rem;
    gap: 1.2rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

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

  .about-photo {
    width: 250px;
  }

  .about, .gallery, .contact, .exhibitions, .buy {
    padding: 4rem 0;
  }

  .social-links {
    gap: 1.5rem;
  }
}
