:root {
  --bg: #050505;
  --text: #f7f7f5;
  --muted: #cfcfcd;
  --quiet: #999995;
  --gold: #c8a04a;
  --line: #343431;
  --page-pad: clamp(24px, 7vw, 112px);
  --content-max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 100;
  transform: translateY(-150%); background: var(--text); color: var(--bg);
  padding: 10px 14px;
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px var(--page-pad);
  background: linear-gradient(to bottom, rgba(5,5,5,.95), rgba(5,5,5,0));
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.mini-logo { width: 116px; opacity: 0; transition: opacity .35s ease; }
.site-header.is-scrolled .mini-logo { opacity: 1; }
.site-nav { display: flex; gap: clamp(24px, 3vw, 44px); font-size: 16px; color: var(--muted); }
.site-nav a { position: relative; padding: 8px 0; transition: color .2s ease; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--gold); transition: right .25s ease; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.active { color: var(--text); }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.active::after { right: 0; }
.menu-toggle { display: none; background: none; border: 0; color: var(--text); padding: 8px 0; }

.section { min-height: 100vh; padding: 140px var(--page-pad) 120px; }
.hero { display: grid; place-items: center; position: relative; }
.hero-logo { width: clamp(240px, 25vw, 390px); transform: translateY(1vh); }

.content-section, .contact-section { display: flex; align-items: center; }
.section-grid { width: min(100%, var(--content-max)); margin: 0 auto; display: grid; grid-template-columns: minmax(180px, 280px) minmax(0, 720px); gap: clamp(48px, 8vw, 140px); align-items: start; }
h2 { margin: 0; font-size: clamp(34px, 4vw, 48px); font-weight: 300; letter-spacing: -.025em; }
.lead { margin: 0; color: var(--muted); font-size: clamp(19px, 2vw, 24px); line-height: 1.72; letter-spacing: -.012em; }

.events { border-top: 1px solid transparent; }
.event { padding: 0 0 62px; margin: 0 0 58px; border-bottom: 1px solid var(--line); }
.event:last-child { border-bottom: 0; margin-bottom: 0; }
.event-date { margin: 0 0 18px; color: var(--gold); font-size: 16px; font-weight: 500; letter-spacing: .02em; }
.event h3 { margin: 0 0 8px; font-size: clamp(26px, 3vw, 34px); font-weight: 300; letter-spacing: -.025em; }
.event-place { margin: 0; color: var(--muted); font-size: 17px; }

.gallery-section { min-height: auto; }
.gallery-heading { margin-bottom: 90px; }
.gallery-intro { margin: 6px 0 0; color: var(--muted); font-size: 18px; }
.gallery-list {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  display: grid;
  gap: clamp(88px, 11vw, 156px);
}
.gallery-item { margin: 0; }
.gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  cursor: zoom-in;
}
.gallery-button img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  object-position: center;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.gallery-button:hover img, .gallery-button:focus-visible img { transform: scale(1.008); filter: brightness(1.04); }
.gallery-item figcaption {
  display: grid;
  gap: 5px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--muted);
}
.gallery-item figcaption strong { color: var(--text); font-weight: 400; font-size: 17px; }

.contact-section { min-height: 82vh; }
.contact-details { font-style: normal; font-size: clamp(20px, 2.3vw, 29px); line-height: 1.55; }
.contact-details p { margin: 0 0 34px; }
.contact-details a { border-bottom: 1px solid var(--gold); transition: color .2s ease; }
.contact-details a:hover { color: var(--gold); }

.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 34px var(--page-pad); color: var(--quiet); font-size: 13px; border-top: 1px solid #1c1c1a; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

.lightbox { width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 36px; border: 0; background: rgba(5,5,5,.97); color: var(--text); }
.lightbox[open] { display: grid; grid-template-columns: 60px minmax(0, 1fr) 60px; place-items: center; }
.lightbox::backdrop { background: rgba(0,0,0,.85); }
.lightbox figure { margin: 0; max-width: min(1300px, calc(100vw - 160px)); }
.lightbox-image { max-height: calc(100vh - 130px); width: auto; margin: 0 auto; }
.lightbox-caption { margin-top: 16px; text-align: center; color: var(--muted); }
.lightbox-close, .lightbox-nav { background: none; border: 0; color: var(--text); cursor: pointer; }
.lightbox-close { position: fixed; top: 28px; right: 34px; font-size: 14px; }
.lightbox-nav { font-size: 30px; opacity: .75; }
.lightbox-nav:hover { opacity: 1; }

@media (max-width: 760px) {
  .site-header { padding-top: 20px; padding-bottom: 20px; background: rgba(5,5,5,.96); }
  .mini-logo { width: 88px; opacity: 1; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 68px 0 auto 0; display: grid; gap: 0; padding: 12px var(--page-pad) 24px; background: rgba(5,5,5,.98); transform: translateY(-130%); transition: transform .3s ease; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid #20201e; }
  .section { padding-top: 120px; padding-bottom: 88px; }
  .hero { min-height: 100svh; }
  .hero-logo { width: min(68vw, 320px); }
  .section-grid { grid-template-columns: 1fr; gap: 50px; }
  .content-section, .contact-section { align-items: flex-start; min-height: auto; }
  .gallery-heading { margin-bottom: 54px; }
  .gallery-list { gap: 72px; }
  .gallery-button img { width: 100%; height: auto; max-height: none; object-fit: contain; }
  .gallery-item figcaption { gap: 4px; }
  .site-footer { flex-direction: column; }
  .lightbox { padding: 70px 14px 24px; }
  .lightbox[open] { grid-template-columns: 36px minmax(0, 1fr) 36px; }
  .lightbox figure { max-width: calc(100vw - 88px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
