:root {
  --fg: #1a1a1a;
  --fg-light: #6b6b6b;
  --fg-muted: #999;
  --bg: #fafaf8;
  --bg-warm: #f5f4f0;
  --accent: #2c2c2c;
  --border: #e0dfdb;
  --serif: 'Gloock', Georgia, serif;
  --sans: 'Montserrat', Helvetica Neue, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s ease;
}

nav .nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--fg);
  text-decoration: none;
}

.logo span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-left: 10px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-light);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--fg);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after { width: 100%; }

/* ── MOBILE NAV ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--fg);
  transition: all 0.3s ease;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(30px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--fg);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav-overlay.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-overlay.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-overlay.open a:nth-child(4) { transition-delay: 0.25s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 48px 80px;
  text-align: center;
  position: relative;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero-quote {
  font-family: var(--serif);
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-line {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin-top: 48px;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}

.hero-scroll-wrap {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  text-align: center;
}

.hero-scroll {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0;
  animation: scrollDrop 4.5s cubic-bezier(0.25, 0.1, 0.25, 1) 1s forwards;
}

@keyframes scrollDrop {
  0% {
    opacity: 0.6;
    transform: translateY(var(--scroll-travel));
  }
  60% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: var(--fg-light);
  }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ── SECTIONS ── */
section {
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 48px;
}

/* ── GALLERY ── */
#work { padding-bottom: 60px; }

.gallery-subsection {
  margin-bottom: 80px;
}

.gallery-subsection:last-child {
  margin-bottom: 0;
}

.gallery-subsection-heading {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}

.gallery-subsection-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-light);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 36px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  flex-grow: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.gallery-overlay h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* ── ABOUT ── */
#about {
  background: var(--bg-warm);
  max-width: 100%;
  padding: 120px 48px;
}

#about .about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-portrait {
  aspect-ratio: 3/4;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--fg-muted);
  font-size: 16px;
  position: sticky;
  top: 120px;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 36px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--fg-light);
  font-size: 15px;
  line-height: 1.8;
}

.about-text p:last-of-type { margin-bottom: 0; }

.credentials {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.credentials h4 {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.credentials ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credentials li {
  font-size: 14px;
  color: var(--fg-light);
  padding-left: 16px;
  position: relative;
}

.credentials li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--fg-muted);
}

.awards-toggle {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  cursor: pointer;
  margin-top: 16px;
  padding: 0;
  transition: color 0.2s;
}

.awards-toggle:hover { color: var(--fg); }

.awards-extra { display: none; }
.awards-extra.shown { display: list-item; }

/* ── EVENTS ── */
.events-sublabel {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
  margin-top: 72px;
  display: block;
}

.events-sublabel:first-of-type { margin-top: 0; }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.event-card {
  background: var(--bg-warm);
  padding: 44px 48px 40px;
  display: flex;
  flex-direction: column;
}

.event-card-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.event-card h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
}

.event-card p {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 28px;
}

.event-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  align-self: flex-start;
  transition: color 0.3s ease;
}

.event-link:hover { color: var(--fg); }

/* ── CONTACT ── */
#contact {
  background: var(--bg);
  max-width: 100%;
  padding: 120px 48px;
}

#contact .contact-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 80px;
}

.contact-left p {
  color: var(--fg-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  gap: 48px;
  margin-bottom: 36px;
}

.contact-details p {
  font-size: 14px;
  color: var(--fg-light);
  line-height: 1.6;
}

.contact-details strong {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.contact-email {
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-light);
}

.contact-email a {
  color: var(--fg-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email a:hover { color: var(--fg); }

.social-links {
  display: flex;
  gap: 24px;
}

.social-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-light);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a:hover { color: var(--fg); }

.social-links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.contact-form label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--fg);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--fg);
}

.contact-form textarea { min-height: 120px; }

.contact-form button {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--fg);
  border: 1px solid var(--fg);
  padding: 16px 40px;
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.contact-form button:hover {
  background: transparent;
  color: var(--fg);
}

#form-status {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* ── FOOTER ── */
footer {
  padding: 36px 48px;
  text-align: center;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: blur(30px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: default;
  padding: 48px;
}

.lightbox.open { display: flex; }

.lightbox-content {
  max-width: 90vw;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.lightbox-caption {
  margin-top: 48px;
  text-align: center;
}

.lightbox-caption h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.lightbox-caption p {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
  line-height: 1.6;
}

.lightbox-caption .copyright {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 40px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.lightbox-close:hover { color: var(--fg); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 48px;
  font-weight: 300;
  color: var(--fg-muted);
  padding: 16px;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 201;
}

.lightbox-arrow:hover { color: var(--fg); }

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox.maximized { padding: 0; justify-content: center; align-items: center; }
.lightbox.maximized .lightbox-content { max-width: 100vw; max-height: 100vh; }
.lightbox.maximized .lightbox-content img { max-width: 100vw; max-height: 100vh; box-shadow: none; }
.lightbox.maximized .lightbox-caption { display: none; }
.lightbox.maximized .lightbox-arrow { display: none; }

/* ── LIGHTBOX AVAILABILITY ── */
.lightbox-availability {
  margin-top: 16px;
  text-align: center;
}

.gallery-availability-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.gallery-availability-link:hover { color: var(--fg); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ── HONEYPOT ── */
.visually-hidden { display: none; }

/* ── SCREEN READER / SEO ONLY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .gallery-grid { gap: 6px; }
  .gallery-row { gap: 6px; }
  #about .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { position: static; max-height: 500px; }
  #contact .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  nav .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  section, #about, #contact { padding: 80px 24px; }
  .hero { padding: 100px 24px 60px; }
  .gallery-grid { gap: 4px; }
  .gallery-row { gap: 4px; }
  .events-grid { grid-template-columns: 1fr; }
  .event-card { padding: 32px 24px; }
  footer { padding: 24px; }
}
