* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}


/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  position: relative;
  width: calc(100% - 72px);
  max-width: none;
  min-height: 62px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  height: 62px;

  text-decoration: none;
}

.site-logo {
  width: 300px;
  height: auto;
  max-height: 56px;

  object-fit: contain;
}

.travel-ticker {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(600px, 44vw);

  overflow: hidden;
  transform: translate(-50%, -50%);

  color: #555555;

  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1;
  white-space: nowrap;

  -webkit-mask-image: linear-gradient(to right, transparent, #000000 8%, #000000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000000 8%, #000000 92%, transparent);
}

.travel-ticker-track {
  display: flex;
  width: max-content;

  animation: travel-ticker-scroll 28s linear infinite;
}

.travel-ticker-track span {
  flex: none;
  padding-right: 2.5rem;
}

@keyframes travel-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: #222222;
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 500;
}

.main-nav a:hover {
  opacity: 0.55;
}


/* HERO */

.hero {
  min-height: 100vh;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  text-align: center;
}

.hero-video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-image {
  position: absolute;
  inset: 0;

  display: none;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background: rgba(0, 0, 0, 0.18);
}

.hero-content {
  position: relative;
  z-index: 2;

  padding: 30px;

  transform: translateY(6vh);

  color: #ffffff;
}

.hero-content p {
  margin: 0;

  font-size: clamp(1.3rem, 2.5vw, 2.1rem);

  font-weight: 500;
  letter-spacing: 0.06em;

  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}


/* SECTIONS */

.section {
  padding: 100px 0;
}

.section-light {
  background: #f4f4f2;
}

.section h2 {
  margin: 0 0 30px;

  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lead {
  max-width: 760px;

  margin: 0;

  font-size: 1.2rem;
}


/* GALLERY */

.gallery-albums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.album-card {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #e8e8e8;
  cursor: pointer;
}

.album-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.album-card:hover img {
  transform: scale(1.035);
  opacity: 0.92;
}

.album-card-title {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px 16px 14px;
  color: #ffffff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
}

.album-card-count {
  display: block;
  margin-top: 2px;

  font-size: 0.82rem;
  font-weight: 400;
  opacity: 0.85;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  display: block;

  width: 100%;
  padding: 0;

  overflow: hidden;

  border: 0;

  background: #e8e8e8;

  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 0.92;
}


/* LIGHTBOX */

.lightbox {
  position: fixed !important;

  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;

  width: 100vw !important;
  height: 100vh !important;

  z-index: 99999 !important;

  display: none !important;

  align-items: center;
  justify-content: center;

  padding: 50px 90px;

  background: rgba(0, 0, 0, 0.94);
}

.lightbox.active {
  display: flex !important;
}

.lightbox-image {
  display: block;

  width: auto !important;
  height: auto !important;

  max-width: min(1200px, 88vw) !important;
  max-height: 82vh !important;

  object-fit: contain;

  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-video {
  display: none;

  width: min(1200px, 88vw);
  height: min(675px, 49.5vw, 82vh);

  max-width: none;
  max-height: none;

  object-fit: contain;
  background: #000000;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-video.rotate-left {
  width: auto;
  height: min(82vh, 88vw);

  max-width: none;
  max-height: none;

  transform: rotate(90deg);
}

.lightbox-close {
  position: absolute;

  top: 18px;
  right: 25px;

  z-index: 100001;

  width: 52px;
  height: 52px;

  padding: 0;

  border: 0;

  background: transparent;

  color: #ffffff;

  font-size: 3rem;
  line-height: 1;

  cursor: pointer;
}

.lightbox-nav {
  position: absolute;

  top: 50%;

  z-index: 100001;

  width: 60px;
  height: 80px;

  transform: translateY(-50%);

  padding: 0;

  border: 0;

  background: transparent;

  color: #ffffff;

  font-size: 4rem;
  line-height: 1;

  cursor: pointer;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  opacity: 0.6;
}


/* FOOTER */

.site-footer {
  padding: 35px 0;

  background: #111111;

  color: #ffffff;

  font-size: 0.9rem;
}


/* MOBILE */

@media (max-width: 1200px) {

  .travel-ticker {
    width: min(420px, 34vw);
  }
}

@media (max-width: 760px) {

  .travel-ticker {
    display: none;
  }

  .gallery-albums {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    width: calc(100% - 28px);
    min-height: 58px;
    gap: 12px;
  }

  .logo-link {
    height: 58px;
  }

  .site-logo {
    width: 230px;
    max-height: 52px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .hero-content {
    transform: translateY(4vh);
  }

  .hero-content p {
    font-size: 1.05rem;
    letter-spacing: 0.05em;
  }

  .section {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 55px 12px !important;
  }

  .lightbox-image {
    max-width: 92vw !important;
    max-height: 78vh !important;
  }

  .lightbox-video {
    width: 92vw;
    height: min(51.75vw, 78vh);

    max-width: none;
    max-height: none;
  }

  .lightbox-video.rotate-left {
    height: min(78vh, 92vw);
    max-width: none;
    max-height: none;
  }

  .lightbox-close {
    top: 8px;
    right: 10px;
  }

  .lightbox-nav {
    width: 46px;
    height: 64px;

    font-size: 3rem;

    background: rgba(0, 0, 0, 0.28);
  }

  .lightbox-prev {
    left: 3px;
  }

  .lightbox-next {
    right: 3px;
  }
}

@media (max-width: 480px) {

  .site-logo {
    width: 195px;
  }

  .main-nav {
    gap: 9px;
  }

  .main-nav a {
    font-size: 0.7rem;
  }

}
