.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(252, 220, 207, 0.38), transparent 28%),
    linear-gradient(180deg, #fcf9f8 0%, #f8f1ee 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border: 0;
  background: #ffffff;
  backdrop-filter: blur(14px);
}

.site-nav {
  display: flex;
  width: 100%;
  max-width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
}

.site-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  color: #1b1c1c;
  text-decoration: none;
}

.site-brand-title {
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  line-height: 1;
  color: #000000;
}

.site-brand-subtitle {
  color: #000000;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.site-nav-links {
  display: none;
  align-items: center;
  gap: 3rem;
}

.site-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.site-language-link {
  border-bottom: 1px solid transparent;
  color: #847373;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  padding: 0.1rem 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

.site-language-link:hover {
  color: #613032;
  border-bottom-color: #613032;
  opacity: 0.8;
}

.site-language-link-active {
  color: #613032;
  font-weight: 600;
}

.site-nav-link {
  color: #847373;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  padding-bottom: 0.25rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease, opacity 0.3s ease;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.site-nav-link:hover {
  color: #613032;
  opacity: 0.8;
  border-bottom: 1px solid #613032;
}

.site-nav-link-active {
  border-bottom: 1px solid #613032;
  color: #613032;
}

.site-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #613032;
  cursor: pointer;
}

.masonry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.masonry-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.masonry-item {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(97, 48, 50, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.gallery-overlay-title {
  color: #ffffff;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-empty-state {
  margin-top: 2rem;
  color: #847373;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.gallery-loader {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
  color: #613032;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-loader.is-hidden {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-modal.is-hidden {
  display: none;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(27, 28, 28, 0.82);
  cursor: pointer;
}

.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(90vw, 1100px);
  max-height: 90vh;
  overflow: auto;
  border-radius: 0.5rem;
  background: #111111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

.gallery-modal-content {
  min-height: 200px;
}

.gallery-modal-media {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.gallery-modal-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.site-footer {
  width: 100%;
  background: #f0eded;
  padding: 5rem 2rem;
}

.site-footer-inner {
  display: flex;
  max-width: 80rem;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer-brand {
  color: #1b1c1c;
  font-family: "Noto Serif", serif;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
}

.site-footer-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  color: #847373;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.site-footer-links a:hover {
  color: #613032;
  border-bottom: 1px solid #613032;
}

.site-footer-copy {
  color: #613032;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-white {
  background-color: #ffffff;
}

.marg-top-10 {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .site-nav-links {
    display: flex;
  }

  .site-menu-toggle {
    display: none;
  }

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

  .site-footer-inner,
  .site-footer-links {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .masonry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site-nav-links.is-open {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 0.5rem;
  }

  .site-language-switcher {
    gap: 0.85rem;
  }

  .site-brand {
    align-items: flex-start;
  }

  .site-brand-title {
    font-size: 1rem;
    letter-spacing: 0.22em;
  }

  .site-brand-subtitle {
    font-size: 0.45rem;
    letter-spacing: 0.16em;
    text-align: left;
  }

  .gallery-modal {
    padding: 1rem;
  }
}
