:root {
  --bg: #0a0a0a;
  --fg: #f2f0ec;
  --muted: #8a8a8a;
  --line: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  font-weight: 500;
  font-size: 0.45em;
  letter-spacing: 0.5em;
  color: var(--muted);
  margin-top: 0.6em;
}

.subtitle {
  margin-top: 1.5rem;
  color: var(--muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 300;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  color: var(--muted);
  font-size: 1.5rem;
  text-decoration: none;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ABOUT */
.about {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 2rem 8rem;
  text-align: center;
}

.about-quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg);
}

.about-body {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
}

.about-meta {
  margin-top: 2.5rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.about-meta .dot { margin: 0 0.8em; opacity: 0.5; }

/* GALLERY - masonry via CSS columns */
.gallery {
  column-count: 1;
  column-gap: 1.5rem;
  padding: 4vw;
}

@media (min-width: 640px) {
  .gallery { column-count: 2; }
}
@media (min-width: 1024px) {
  .gallery { column-count: 3; }
}

.gallery img {
  width: 100%;
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, filter 0.4s ease;
  filter: grayscale(10%);
}

.gallery img:hover {
  filter: grayscale(0%);
}

.gallery img.visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-empty {
  color: var(--muted);
  text-align: center;
  width: 100%;
  padding: 4rem 0;
  letter-spacing: 0.1em;
}

/* CONTACT */
.contact {
  text-align: center;
  padding: 6rem 2rem;
  border-top: 1px solid var(--line);
}

.contact p { color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.7rem; font-weight: 300; }

.contact-email,
.contact-phone,
.contact-instagram {
  display: block;
  margin: 1rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
}

.contact-email:hover,
.contact-phone:hover,
.contact-instagram:hover { color: var(--muted); }

.footnote { margin-top: 1.5rem; font-size: 0.65rem; opacity: 0.5; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-size: 2.5rem;
  color: var(--fg);
  cursor: pointer;
}
