
:root {
  --color-bg: #000000;
  --color-fg: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.55);
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 110px;
  --gutter: 4vw;
  --max-width: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 var(--gutter);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
}

.site-header .logo img {
  max-height: 80px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-nav a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.site-nav a:hover {
  border-bottom-color: var(--color-fg);
}


.hero {
  position: relative;
  height: 100vh;
  min-height: 480px;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; 
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-item-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

.gallery-item-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item-media::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-media::after {
  opacity: 1;
}

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

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  margin-bottom: 0px;
  padding: 30px 6% 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  font-size: 11px;
  letter-spacing: 0.09em;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-fg);
  text-align: left;
  pointer-events: none;
}


body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(90vw, 1100px);
  aspect-ratio: 16 / 9;
}

.lightbox-video,
.lightbox-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  background: none;
  border: 0;
  color: var(--color-fg);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

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


.page-banner img {
  width: 100%;
  height: auto;
}

.about-copy {
  background: #161616;
  text-align: left;
}

.about-copy-inner {
  margin: 0;
  padding: 40px var(--gutter) 40px;
}

.about-copy h1 {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin: 0 0 1.8rem;
}

.about-copy p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-fg);
  margin: 0 0 1.5rem;
}


.footer-media {
  background: #000000;
  padding-top: 6vmax;
  padding-bottom: 6vmax;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  column-gap: 3vw;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.footer-row > div,
.footer-row > a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-row img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-email {
  justify-content: flex-start !important;
}

.footer-email a {
  color: var(--color-fg);
  font-size: 15px;
  letter-spacing: 0.02em;
}

.footer-email a:hover {
  color: var(--color-muted);
}

.footer-copyright-section {
  background: #161616;
}

.footer-copyright-inner {
  min-height: 10vh;
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2vmax var(--gutter);
}

.footer-copyright-section h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-muted);
  text-align: left;
}


@media screen and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 84px;
  }

  .site-header .logo img {
    max-height: 60px;
  }

  .site-nav {
    gap: 1.5rem;
  }

  .site-nav a {
    font-size: 11px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-content {
    width: 90vw;
  }

  .lightbox-close {
    top: -38px;
    font-size: 26px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    row-gap: 40px;
    max-width: 320px;
  }

  .footer-email {
    justify-content: center !important;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
