/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:        #0a0a0a;
  --bg-alt:    #111111;
  --surface:   #1a1a1a;
  --border:    #2a2a2a;
  --text:      #d4d0c8;
  --text-dim:  #8a8680;
  --accent:    #c9b99a;
  --white:     #f0ece4;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Inter', -apple-system, Helvetica Neue, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--white); }

/* ===== NAV ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-name:hover { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav-links a:hover { color: var(--white); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dim);
  margin: 5px 0;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 50% 50%, rgba(30, 28, 24, 0.8) 0%, var(--bg) 70%);
  padding: 2rem;
}
.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.3em;
}
.hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.8em;
}
.hero-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 2rem;
}
.section-dark {
  background: var(--bg-alt);
}
.container {
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}
h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-top: 0.6rem;
}

/* ===== ABOUT ===== */
.col-text p {
  margin-bottom: 1.2em;
}
.col-text p:last-child { margin-bottom: 0; }

/* ===== ARTIST STATEMENT ===== */
.statement {
  border: none;
  padding: 0;
  margin: 0;
}
.statement p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5em;
}
.statement p:last-child { margin-bottom: 0; }

/* ===== GALLERY PLACEHOLDER ===== */
.gallery-note {
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 2.5rem;
}
.gallery-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 2px;
}
.gallery-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.6em;
}
.gallery-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== CV ===== */
.cv-section {
  margin-bottom: 3rem;
}
.cv-section:last-child { margin-bottom: 0; }
.cv-section h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.cv-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem 1.5rem;
}
.cv-list dt {
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  padding-top: 0.15em;
  white-space: nowrap;
}
.cv-list dd {
  font-size: 0.92rem;
  line-height: 1.5;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}
.cv-list dd:last-of-type { border-bottom: none; }
.cv-detail {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.2em;
}

.cv-affiliations {
  list-style: none;
}
.cv-affiliations li {
  font-size: 0.92rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}
.cv-affiliations li:last-child { border-bottom: none; }

/* ===== PRESS ===== */
.press-item {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.press-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.press-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.3em;
}
.press-source {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.press-item blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.press-item blockquote p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0.8em;
}
.press-item blockquote p:last-child { margin-bottom: 0; }
.press-verdict {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1rem;
}

/* ===== CONTACT ===== */
.contact-info p {
  margin-bottom: 0.8em;
}
.contact-detail {
  font-size: 0.95rem;
}
.contact-detail a {
  border-bottom: 1px solid rgba(201, 185, 154, 0.3);
}
.contact-detail a:hover {
  border-bottom-color: var(--white);
}

/* ===== FOOTER ===== */
footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer p {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  html { font-size: 16px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .section { padding: 3.5rem 1.5rem; }

  .cv-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cv-list dt {
    padding-top: 0.8rem;
    padding-bottom: 0;
  }
  .cv-list dd {
    padding-bottom: 0.8rem;
  }

  .gallery-categories {
    grid-template-columns: 1fr;
  }
}
