
:root {
  --bg: #0a0a0a;
  --bg-soft: #111;
  --fg: #f0f0f0;
  --fg-soft: #999;
  --fg-mute: #666;
  --line: #1f1f1f;
  --gold: #c9a961;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* Top nav */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 32px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topnav .brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.topnav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
.topnav a {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-soft);
  transition: color 0.2s;
}
.topnav a:hover { color: var(--fg); }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.6) 100%);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 50px;
}
.hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 300;
  max-width: 700px;
  color: var(--fg);
  opacity: 0.9;
}

/* Sections */
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* Bio */
.bio {
  padding: 120px 24px;
  border-top: 1px solid var(--line);
}
.bio-inner {
  max-width: 760px;
  margin: 0 auto;
}
.bio p {
  font-size: 1.1rem;
  margin-bottom: 1.5em;
  color: #d8d8d8;
}
.bio em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--fg);
  font-size: 1.05em;
}

/* Works grid */
.works {
  padding: 120px 24px;
  border-top: 1px solid var(--line);
}
.works-header { text-align: center; margin-bottom: 50px; }
.works-sub {
  color: var(--fg-soft);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto;
}
.card {
  cursor: pointer;
  background: var(--bg-soft);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.95);
}
.card:hover .card-img img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.card-meta {
  padding: 18px 22px 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.card-cat {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-mute);
}

/* Prints info */
.prints-info {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
  border-top: 1px solid var(--line);
}
.prints-inner { max-width: 1100px; margin: 0 auto; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.info-block h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--gold);
}
.info-block p {
  color: #c8c8c8;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.info-block strong { color: var(--fg); font-weight: 500; }
.pricing {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 0.9rem;
}
.pricing th, .pricing td {
  padding: 10px 8px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.pricing th {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
.pricing td:last-child { color: var(--gold); font-weight: 500; }
.pricing-note {
  font-size: 0.85rem !important;
  color: var(--fg-mute) !important;
  margin-top: 14px !important;
}

/* Contato */
.contato {
  padding: 120px 24px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.contato-intro {
  color: var(--fg-soft);
  max-width: 600px;
  margin: 0 auto 50px;
}
.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.contato-card {
  display: block;
  text-decoration: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 32px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.contato-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.contato-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 10px;
}
.contato-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--fg);
}

/* Footer */
footer {
  text-align: center;
  padding: 50px 24px;
  border-top: 1px solid var(--line);
  color: var(--fg-mute);
  font-size: 0.8rem;
}
footer .footer-sub {
  margin-top: 8px;
  font-style: italic;
  color: #444;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 380px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.lightbox[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.lb-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}
.lb-stage img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lb-info {
  background: var(--bg-soft);
  padding: 40px 32px;
  overflow-y: auto;
  border-left: 1px solid var(--line);
}
.lb-info h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.lb-cat {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.lb-info p {
  color: #c8c8c8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.lb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.lb-tags span {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: lowercase;
  color: var(--fg-mute);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}
.lb-edition {
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lb-edition h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 1px;
}
.cta-primary {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 24px;
  margin-bottom: 16px;
  transition: background 0.2s, transform 0.2s;
}
.cta-primary:hover {
  background: #e0c078;
  transform: translateY(-2px);
}
.lb-fineprint {
  font-size: 0.75rem !important;
  color: var(--fg-mute) !important;
  font-style: italic;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--line);
  color: var(--fg);
  font-size: 1.6rem;
  font-weight: 200;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  z-index: 1001;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--sans);
}
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 404px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .topnav { padding: 14px 20px; }
  .topnav ul { gap: 18px; }
  .topnav a { font-size: 0.75rem; letter-spacing: 1px; }
  .lightbox { grid-template-columns: 1fr; }
  .lb-info { border-left: none; border-top: 1px solid var(--line); max-height: 50vh; }
  .lb-stage { padding: 60px 16px 16px; }
  .lb-stage img { max-height: 50vh; }
  .lb-next { right: 24px; }
}
@media (max-width: 600px) {
  .topnav { flex-direction: column; gap: 8px; padding: 12px; }
  .hero h1 { letter-spacing: 3px; }
  .bio, .works, .prints-info, .contato { padding: 80px 20px; }
  .grid { gap: 20px; }
  .info-grid { gap: 30px; }
  .lb-info h3 { font-size: 1.5rem; }
}
