/* Luxury & Shine — shared styles */

.tonal-separation {
  box-shadow: 0 20px 40px rgba(27, 28, 28, 0.05);
}

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

.glass-hero,
.glass-panel {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
}

body {
  min-height: max(884px, 100dvh);
}

/* NAV — translucent gray */
.site-nav {
  background: rgba(60, 73, 72, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand-text {
  color: #ffffff;
}

/* Desktop nav links */
.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #6df7f1;
}
.nav-link-active {
  color: #6df7f1 !important;
  font-weight: 600;
}

/* Hamburger button (mobile only) */
.nav-hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Desktop call CTA in the nav */
.nav-desktop-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #006a67, #0abab5);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 12px rgba(10, 186, 181, 0.25);
}
.nav-desktop-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(10, 186, 181, 0.35);
}
.nav-desktop-cta:active {
  transform: scale(0.97);
}
.nav-desktop-cta .material-symbols-outlined {
  font-size: 16px;
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 85vw);
  background: rgba(27, 28, 28, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu a {
  display: block;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-menu a:hover {
  color: #6df7f1;
  padding-left: 8px;
}
.mobile-menu .mobile-cta {
  margin-top: 32px;
  background: linear-gradient(135deg, #006a67, #0abab5);
  color: white !important;
  text-align: center;
  padding: 16px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
}
.mobile-menu .mobile-cta:hover {
  padding-left: 16px;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  border-radius: 4px;
}
.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Backdrop overlay when menu is open */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 55;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile breakpoint */
@media (max-width: 767px) {
  .nav-hamburger {
    display: flex;
  }
  .nav-desktop-cta {
    display: none;
  }

  /* Mobile layout: logo flush left, wordmark centered, hamburger flush right.
     Logo and hamburger are no longer linked together — wordmark gets its own
     centered cell so it sits in the visual middle of the nav. */
  .nav-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .nav-inner > .brand-link {
    grid-column: 1;
    justify-self: start;
    gap: 0;
  }
  .nav-inner > .brand-link .brand-wordmark {
    display: none; /* removed from inside the link on mobile */
  }
  /* Floating wordmark in the center column, absolutely positioned within the grid */
  .mobile-wordmark {
    grid-column: 2;
    justify-self: center;
    font-family: 'Noto Serif', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #ffffff;
    white-space: nowrap;
  }
  .nav-inner > .nav-hamburger {
    grid-column: 3;
    justify-self: end;
  }
  .brand-link img {
    height: 36px;
  }
}

/* On desktop the floating mobile wordmark is hidden — desktop uses the inline one inside the brand link */
@media (min-width: 768px) {
  .mobile-wordmark {
    display: none;
  }
}

/* On desktop, hide the wordmark in nav only if too narrow — but keep it shown by default */
@media (min-width: 768px) {
  .brand-wordmark {
    display: inline;
  }
}

/* Footer */
.footer-link {
  color: #3c4948;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  transition: all 0.5s ease;
}
.footer-link:hover {
  color: #006a67;
  letter-spacing: 0.15em;
}

html {
  scroll-behavior: smooth;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #006a67 !important;
  box-shadow: 0 1px 0 0 #006a67;
}
