body {
  background-color: #fafafa;
  color: #111;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}

/* ── Typography & Headings ── */
.hero-title {
  display: block;
  width: 100%;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  line-height: 1.3;
  font-size: 4vw;
  color: #111;
}

h1.hero-title {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

body h3 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #111;
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: normal;
}

body p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

body p.slogan {
  font-family: "Montserrat", sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 3rem;
}


body a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body a:hover,
body a:focus {
  color: #555;
}

/* ── Brand Logo ── */
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0;
}

.brand-logo {
  width: 250px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ── Page Container (Unified Framing) ── */
.page-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5vw;
}

/* ── Photo Grid (Elegant framing) ── */
.photo-grid {
  margin: 4rem 0;
}

.photo-grid>div {
  margin-bottom: 30px;
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Lightbox Styles ── */
.gallery-img {
  cursor: zoom-in;
}

[data-lightbox="container"] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

[data-lightbox="container"].active {
  display: flex;
}

body.lightbox-open {
  overflow: hidden;
}

[data-lightbox="container"] {
  overflow: hidden;
}

[data-lightbox="container"] img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5% 5%;
  box-sizing: border-box;
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-lightbox="container"] img.no-transition {
  transition: none !important;
}

[data-lightbox="close"] {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 60px;
  line-height: 1;
  cursor: pointer;
  z-index: 2001;
  transition: opacity 0.3s;
}

[data-lightbox="close"]:hover {
  opacity: 0.5;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 80px;
  line-height: 1;
  cursor: pointer;
  padding: 20px;
  user-select: none;
  z-index: 2001;
  transition: opacity 0.3s;
}

.lightbox-nav:hover {
  opacity: 0.5;
}

[data-lightbox="prev"] {
  left: 20px;
}

[data-lightbox="next"] {
  right: 20px;
}

/* Mobile Lightbox Controls (Bottom Bar) */
@media (max-width: 767px) {

  [data-lightbox="close"],
  .lightbox-nav {
    top: auto;
    bottom: 15px;
    font-size: 40px;
    width: 55px;
    height: 55px;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
    box-sizing: border-box;
  }

  [data-lightbox="close"] {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  [data-lightbox="prev"] {
    transform: none;
    left: 15px;
    padding-bottom: 10px;
    /* Push '‹' up */
    padding-right: 3px;
  }

  [data-lightbox="next"] {
    transform: none;
    right: 15px;
    left: auto;
    padding-bottom: 10px;
    /* Push '›' up */
    padding-left: 3px;
  }

  [data-lightbox="container"] img {
    padding: 85px 5vw 85px 5vw;
  }

  [data-lightbox="container"] {
    background: #ffffff;
  }
}

/* ── Premium Navigation Bar ── */
.premium-nav {
  width: 100%;
  background: transparent;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.nav-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  padding: 0;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #111;
  text-decoration: none !important;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.nav-brand:hover {
  color: #555;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #555;
  text-decoration: none !important;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #000;
}

.book-now-btn {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid #111;
  color: #111 !important;
  border-radius: 0;
  padding: 8px 20px !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

.book-now-btn:hover {
  background-color: #111;
  color: #fff !important;
}

.book-now-btn.cta-large {
  font-size: 1.1rem;
}


.nav-social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.nav-social-icons a {
  color: #111;
  transition: opacity 0.3s ease;
}

.nav-social-icons a:hover {
  opacity: 0.6;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #111;
  padding: 0;
}


@media (max-width: 991px) {
  .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-brand {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .nav-logo {
    width: 80px;
    margin-bottom: 0.5rem;
  }

  .burger-btn {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 2.5rem;
    gap: 1.5rem;
  }

  .nav-link {
    padding: 12px 0;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .nav-menu.active {
    display: flex;
  }

  .book-now-btn {
    margin-top: 0 !important;
    margin-left: 0;
  }

  .nav-social-icons {
    width: 100%;
    margin-top: 1rem !important;
    gap: 3rem;
    font-size: 1.8rem;
  }

  .nav-social-icons a {
    padding: 12px;
  }

  .premium-nav {
    text-align: center;
  }

  .nav-container {
    justify-content: center;
    gap: 0;
  }

  .hero-title {
    font-size: 2rem;
    margin-top: 5vh;
  }
}

.nav-logo {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

/* ── Split Layout ── */
.split-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.split-sidebar {
  width: 300px;
  flex-shrink: 0;
  padding: 3rem 2rem;
  overflow-y: auto;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
  background-color: #fafafa;
}

.split-content {
  flex-grow: 1;
  overflow-y: auto;
  overflow-x: hidden;

  position: relative;
}

@media (max-width: 991px) {
  .split-layout {
    flex-direction: column;
    overflow: auto;
    height: auto;
  }

  .split-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 2rem;
    position: relative;
    z-index: 1001;
  }

  body.nav-open .split-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fafafa;
    padding-bottom: 4rem;
  }

  .split-content {
    overflow-y: visible;
  }
}

/* ── Mobile Nav Overlay ── */
body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}

@media (max-width: 768px) {
  .photo-grid .w-1\/3 {
    width: 100% !important;
    margin-bottom: 24px;
  }
}
