 .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  margin-right: auto;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(22, 22, 22, 0.08);
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1rem, 1.8vw, 1.38rem);
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
}

.nav-list {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list a {
  font-size: 0.96rem;
  font-weight: 500;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lang-toggle-separator {
  opacity: 0.5;
  margin: 0 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 99px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: clip;
  background: transparent;
}

.hero-media {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.42) 0%, rgba(10, 10, 10, 0.24) 38%, rgba(10, 10, 10, 0.18) 100%);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  justify-items: center;
  padding: 56px 0 72px;
}

.hero-copy {
  max-width: 760px;
  color: #ffffff;
  text-align: center;
}

.hero-copy h1 {
  margin: 0 0 16px;
  max-width: 560px;
  margin-inline: auto;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-description {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-actions .btn {
  min-width: 200px;
}


.location-contact-wrap {
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.duo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.location-point-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0;
}

.location-point-card,
.contact-card {
  padding: 18px;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid rgba(22, 22, 22, 0.05);
}

.location-map {
  margin-top: 8px;
  overflow: hidden;
  border-radius: 24px;
  min-height: 340px;
  border: 1px solid var(--line);
  background: #eaeaea;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

.location-btn {
  margin-top: 18px;
}

.contact-card-stack {
  display: grid;
  gap: 14px;
  margin: 22px 0 24px;
}

.contact-panel-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-panel {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.checkout-actions {
  display: flex;
  justify-content: flex-end;
}

.site-footer {
  padding: 0 0 30px;
  background: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  padding: 34px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
}

.footer-copy-text {
  margin: 0;
  color: #666666;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #444444;
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.94rem;
  color: #777777;
}

@media (max-width: 1080px) {
  .hero-grid,
  .duo-grid,
  .checkout-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 640px;
  }

  .checkout-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 991px) {
  .footer-inner,
  .location-point-list,
  .contact-panel-actions {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    width: min(320px, calc(100% - 28px));
    display: block;
    padding: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    background: rgba(246, 244, 238, 0.98);
    border: 1px solid rgba(22, 22, 22, 0.08);
    border-radius: 22px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.24s ease, padding 0.24s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    max-height: 420px;
    transform: translateY(0);
    pointer-events: auto;
    padding: 12px 16px 16px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .nav-list a {
    display: block;
    padding: 10px 4px;
  }

  .nav-cta {
    min-height: auto;
    padding: 10px 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 74px;
    gap: 12px;
  }

  .logo-text {
    font-size: 0.90rem;
    max-width: calc(100vw - 180px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .lang-toggle {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: calc(92vh - 74px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 34px 0 46px;
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(1.42rem, 6.8vw, 1.85rem);
    line-height: 1.04;
    max-width: 100%;
  }

  .hero-description {
    font-size: 0.96rem;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-panel-actions .btn,
  .checkout-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .hero-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-facts,
  .location-point-list,
  .footer-inner,
  .contact-panel-actions {
    grid-template-columns: 1fr;
  }

  .location-map,
  .location-map iframe {
    min-height: 300px;
  }

  .site-footer {
    padding-bottom: 22px;
  }

  .footer-inner {
    gap: 18px;
    padding: 26px 0 20px;
  }
}


main,
.spaces-section,
.attractions-section,
.booking-section,
.features,
.location-contact-wrap,
.site-footer {
  position: relative;
  z-index: 3;
  background: #ffffff;
}

.trust-band {
  position: relative;
  z-index: 4;
  background: linear-gradient(140deg, #101010 0%, #1b1b1b 100%);
}

@media (max-width: 767px) {
  .hero {
    min-height: calc(92vh - 74px);
  }

  .hero-grid {
    gap: 12px;
    padding: 34px 0 46px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.38rem, 6.6vw, 1.82rem);
    line-height: 1.05;
  }

  .hero-description {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-actions {
    justify-content: center;
  }
}
