@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;

  /* Premium HSL Color Palette */
  --hsl-navy-dark: 215, 60%, 8%;       /* #050d1a - Deepest midnight navy */
  --hsl-navy-medium: 215, 55%, 12%;    /* #091526 - Classic dark navy */
  --hsl-navy-light: 215, 45%, 18%;     /* #10243d - Soft luxury navy */
  
  --hsl-gold: 38, 45%, 55%;            /* #cbb17b - Elegant satin gold */
  --hsl-gold-light: 38, 45%, 68%;      /* #dac69e - Lighter gold */
  --hsl-gold-dark: 38, 50%, 42%;       /* #a6894c - Darker shadow gold */

  --hsl-cream: 36, 40%, 97%;           /* #fbf9f4 - Luxurious warm cream */
  --hsl-cream-alt: 36, 25%, 92%;       /* #eedecc - Muted beige card bg */
  
  --hsl-text-dark: 215, 40%, 15%;      /* #172436 - Primary dark text */
  --hsl-text-muted: 215, 12%, 46%;     /* #667586 - Secondary description text */

  /* Direct Color Tokens */
  --color-navy-dark: hsl(var(--hsl-navy-dark));
  --color-navy-medium: hsl(var(--hsl-navy-medium));
  --color-navy-light: hsl(var(--hsl-navy-light));
  --color-gold: hsl(var(--hsl-gold));
  --color-gold-light: hsl(var(--hsl-gold-light));
  --color-gold-dark: hsl(var(--hsl-gold-dark));
  --color-cream: hsl(var(--hsl-cream));
  --color-cream-alt: hsl(var(--hsl-cream-alt));
  --color-text-dark: hsl(var(--hsl-text-dark));
  --color-text-muted: hsl(var(--hsl-text-muted));
  --color-white: #ffffff;
  
  /* Layout Constants */
  --header-height-large: 110px;
  --header-height-small: 80px;
  --container-width: 1280px;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-subtle: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 20px 45px -20px rgba(0, 0, 0, 0.08);
  --shadow-luxury: 0 30px 60px -25px rgba(10, 25, 47, 0.15);
}

/* --- RESET & BASE STYLING --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-small);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--color-navy-light);
  border: 2px solid var(--color-cream);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* Reusable Components & Layout utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, select, textarea {
  font-family: inherit;
}

ul {
  list-style: none;
}

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

/* Section Common Styling */
.section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-navy-dark);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.section-desc {
  max-width: 600px;
  color: var(--color-text-muted);
  margin-bottom: 60px;
  font-size: 1.05rem;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--color-navy-medium);
  color: var(--color-white);
  border: 1px solid var(--color-navy-medium);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary:hover {
  border-color: var(--color-gold);
  color: var(--color-navy-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-navy-medium);
  border: 1px solid var(--color-navy-medium);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-navy-medium);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline:hover {
  color: var(--color-white);
}

/* Light button variants for hero */
.btn-hero-primary {
  background-color: var(--color-gold);
  color: var(--color-navy-dark);
  border: 1px solid var(--color-gold);
}
.btn-hero-primary:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-hero-outline:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-navy-dark);
}


/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height-large);
  z-index: 100;
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: var(--transition-smooth);
}

header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
}

.logo img {
  height: 55px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo .main-logo {
  opacity: 1;
}

.logo .sticky-logo {
  display: block;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-white);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link:hover {
  color: var(--color-gold-light);
}

.header-cta {
  display: flex;
  align-items: center;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.mobile-nav-toggle span:nth-child(1) { top: 0; }
.mobile-nav-toggle span:nth-child(2) { top: 11px; }
.mobile-nav-toggle span:nth-child(3) { top: 22px; }

/* Sticky Header styling */
header.sticky {
  height: var(--header-height-small);
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

header.sticky::after {
  background-color: var(--color-border);
}

header.sticky .nav-link {
  color: var(--color-text-dark);
}

header.sticky .logo .main-logo {
  opacity: 0;
  pointer-events: none;
}

header.sticky .logo .sticky-logo {
  opacity: 1;
}

header.sticky .mobile-nav-toggle span {
  background-color: var(--color-navy-dark);
}

/* NATIVE SCROLL ANIMATION (Shrinking Header) */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
    header {
      animation: shrinkHeader auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 120px;
    }
    
    .logo .main-logo {
      animation: fadeOutMain auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 120px;
    }
    
    .logo .sticky-logo {
      animation: fadeInSticky auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 120px;
    }
    
    header .nav-link {
      animation: colorChange auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 120px;
    }
    
    header .mobile-nav-toggle span {
      animation: toggleColorChange auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 120px;
    }
    
    header::after {
      animation: borderChange auto linear both;
      animation-timeline: scroll(block root);
      animation-range: 0px 120px;
    }
  }
}

@keyframes fadeOutMain {
  to {
    opacity: 0;
  }
}

@keyframes fadeInSticky {
  to {
    opacity: 1;
  }
}

@keyframes shrinkHeader {
  to {
    height: var(--header-height-small);
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  }
}

@keyframes colorChange {
  to {
    color: var(--color-text-dark);
  }
}

@keyframes toggleColorChange {
  to {
    background-color: var(--color-navy-dark);
  }
}

@keyframes borderChange {
  to {
    background-color: var(--color-border);
  }
}


/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: url('assets/interior.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 13, 26, 0.7) 0%,
    rgba(9, 21, 38, 0.8) 50%,
    rgba(5, 13, 26, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  margin-top: 60px;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-gold-light);
  margin-bottom: 24px;
  display: inline-block;
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  animation: fadeInUp 1.2s ease forwards;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeInUp 1.4s ease forwards;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  animation: fadeInUp 1.6s ease forwards;
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: var(--transition-smooth);
}

.scroll-indicator:hover {
  color: var(--color-gold);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background-color: var(--color-gold);
  animation: scrollDown 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-20px); }
  80% { transform: translateY(50px); }
  100% { transform: translateY(50px); }
}


/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.about-text-content {
  position: relative;
}

.about-philosophy {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  margin-bottom: 24px;
  font-style: italic;
  border-left: 2px solid var(--color-gold);
  padding-left: 20px;
}

.about-body {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 576px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-wrapper {
  background-color: var(--color-cream-alt);
  padding: 12px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--color-navy-dark);
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Info card (Hours & Address) */
.about-info-card {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 60px 48px;
  position: relative;
  box-shadow: var(--shadow-luxury);
  border-top: 4px solid var(--color-gold);
}

.info-card-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--color-white);
  position: relative;
}

.info-card-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--color-gold);
}

.info-block {
  margin-bottom: 32px;
}

.info-block-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-light);
  margin-bottom: 8px;
  display: block;
}

.info-block-content {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.info-hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-hours-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}

.info-hours-day {
  font-weight: 500;
}

.info-hours-time {
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}


/* --- SERVICES SECTION --- */
.services-section {
  background-color: var(--color-cream-alt);
}

.services-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.tab-btn {
  background: none;
  border: 1px solid rgba(11, 26, 48, 0.15);
  padding: 16px 40px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-navy-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--color-navy-medium);
  color: var(--color-navy-dark);
}

.tab-btn.active {
  background-color: var(--color-navy-medium);
  color: var(--color-white);
  border-color: var(--color-navy-medium);
  box-shadow: var(--shadow-medium);
}

.services-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.services-tab-content.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .services-tab-content.active {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-navy-dark);
  position: relative;
  background-color: var(--color-cream-alt);
  padding-right: 12px;
  z-index: 2;
}

.service-price {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  background-color: var(--color-cream-alt);
  padding-left: 12px;
  z-index: 2;
}

.service-price a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed transparent;
  transition: var(--transition-smooth);
}

.service-price a:hover {
  color: var(--color-navy-dark);
  border-bottom-color: var(--color-navy-dark);
}

.service-connector {
  flex-grow: 1;
  height: 1px;
  border-bottom: 1px dotted rgba(11, 26, 48, 0.25);
  margin-bottom: 6px;
  margin-left: -8px;
  margin-right: -8px;
  z-index: 1;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.services-disclaimer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-style: italic;
}


/* --- GALLERY SECTION --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.filter-btn {
  background: none;
  border: none;
  padding: 8px 24px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn.active {
  color: var(--color-navy-dark);
}

.filter-btn.active::after {
  transform: scaleX(1);
}

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

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--color-navy-dark);
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 21, 38, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 2;
  padding: 24px;
  text-align: center;
}

.gallery-overlay-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  opacity: 0;
  transition: var(--transition-bounce);
}

.gallery-overlay-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-gold);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

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

.gallery-item:hover .gallery-overlay-icon {
  transform: scale(1);
  opacity: 1;
}

/* Hide animations/filtering for layout shifts */
.gallery-item.hidden {
  display: none;
}


/* --- LIGHTBOX MODAL --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 13, 26, 0.95);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  opacity: 1;
  color: var(--color-gold);
}


/* --- CONTACT & LOCATION --- */
.contact-section {
  background-color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* Elegant Contact Form */
/* Elegant Booking CTA */
.booking-cta-wrapper {
  background-color: var(--color-cream);
  padding: 50px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.booking-cta-card {
  width: 100%;
}

.cta-eyebrow {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.cta-title {
  font-family: var(--font-secondary);
  font-size: 2.2rem;
  color: var(--color-navy-dark);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.cta-text {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 35px;
}

.cta-phone-container {
  margin-bottom: 35px;
  width: 100%;
}

.cta-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  padding: 18px 36px;
  background-color: var(--color-navy-dark);
  color: var(--color-white) !important;
  border-radius: 0;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  border: 1px solid var(--color-navy-dark);
  box-shadow: var(--shadow-small);
  cursor: pointer;
}

.cta-phone-btn:hover {
  background-color: transparent;
  color: var(--color-navy-dark) !important;
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.cta-phone-btn svg {
  transition: transform var(--transition-smooth);
}

.cta-phone-btn:hover svg {
  transform: scale(1.1);
}

.cta-salon-features {
  border-top: 1px solid var(--color-border);
  padding-top: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-feature {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.cta-feature span {
  flex-grow: 1;
}

@media (max-width: 576px) {
  .booking-cta-wrapper {
    padding: 40px 24px;
  }
  .cta-title {
    font-size: 1.8rem;
  }
}

/* Map Info Panel */
.contact-map-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  height: 100%;
}

.contact-quick-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 480px) {
  .contact-quick-info {
    grid-template-columns: 1fr;
  }
}

.quick-info-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-info-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold-dark);
}

.quick-info-value {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}

.map-wrapper {
  flex-grow: 1;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  border-radius: 0;
  min-height: 350px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  display: block;
  filter: saturate(0.8) contrast(1.05);
}


/* --- FOOTER --- */
footer {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 320px;
}

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

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--color-gold-light);
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background-color: var(--color-gold);
}

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

.footer-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
}

.footer-link:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.02);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}


/* --- ANIMATIONS & UTILITIES --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Overrides & Mobile Menu Open state */
body.mobile-menu-active {
  overflow: hidden;
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 80px 40px;
    z-index: 105;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    color: var(--color-white) !important;
  }
  
  .header-cta {
    display: none; /* Hide top right button on mobile to avoid overlap */
  }
  
  /* Menu open toggle state */
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: var(--color-white) !important;
  }
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
    background-color: var(--color-white) !important;
  }
}

/* NATIVE SCROLL ENTRANCE EFFECTS */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes revealUp {
      from {
        opacity: 0;
        transform: translateY(60px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .scroll-reveal {
      animation: revealUp auto linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 30%;
    }
  }
}

/* IntersectionObserver JS Fallback classes for unsupported browsers */
.reveal-init {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}
