:root {
  --rose-950: #2a1a24;
  --rose-900: #3d2835;
  --rose-800: #5c3a4f;
  --rose-600: #8f5f78;
  --rose-400: #c9a0b3;
  --rose-300: #dcc4d0;
  --rose-200: #ede0e7;
  --rose-100: #f8f2f5;
  --stone-50: #faf8f9;
  --text-dark: #1f1520;
  --text-light: #fff9fb;
  --surface: #ffffff;
  --focus: #7a2d55;
  --font-body: 'Open Sans', 'Segoe UI', sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: linear-gradient(180deg, var(--stone-50) 0%, var(--rose-100) 100%);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}


/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */


.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 251, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(61, 39, 50, 0.14);
}

.mega-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.brand {
  text-decoration: none;
  font-weight: 700;
  color: var(--rose-900);
}

.menu-toggle,
.services-trigger {
  border: 0;
  border-radius: 999px;
  background: var(--rose-900);
  color: var(--text-light);
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle:hover,
.services-trigger:hover {
  transform: translateY(-1px);
}

.menu-panel {
  display: none;
}



.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-list a,
.services-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font: inherit;
  font-weight: 500;
  line-height: 1.2;
  background: none;
  color: var(--rose-950);
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}

.menu-list a:hover,
.services-trigger:hover {
  background: var(--rose-200);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.language-btn {
  border: 1px solid rgba(61, 37, 50, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--rose-950);
  padding: 0.2rem 0.55rem;
  font: inherit;
  cursor: pointer;
}



.services-item {
  position: relative;
}

.services-mega-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.6rem);
  width: min(92vw, 820px);
  background: var(--surface);
  border: 1px solid rgba(70, 41, 58, 0.16);
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(53, 29, 43, 0.18);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 1rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}



.services-column h3 {
  margin: 0 0 0.55rem;
  color: var(--rose-800);
  font-size: 1rem;
}

.services-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}


/* ============================================================================
   SECTIONS & CONTAINER
   ============================================================================ */


.section {
  padding: 3rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section > .container > p {
  font-size: 1rem;
  color: var(--text-dark);
  max-width: 800px;
}




/* ============================================================================
   HERO SECTION
   ============================================================================ */

   
.hero {
  position: relative;
  min-height: min(85vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 210, 225, 0.4), transparent 55%),
    linear-gradient(135deg, #3a2430 0%, #6a4558 45%, #a67d92 100%);
  color: var(--text-light);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(43, 17, 30, 0.64) 20%, rgba(146, 81, 115, 0.34) 80%);
}

.hero-content {
  position: relative;
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: clamp(1rem, 5vw, 2rem);
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 0.7rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.05;
  max-width: 12ch;
  font-weight: 600;
}

.hero-word {
  color: #ffe1ef;
  transition: color 260ms ease;
}

.hero p {
  max-width: 62ch;
  margin: 1rem 0 1.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
}

.btn-primary {
  background: #ffd9e9;
  color: #452032;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--text-light);
}









.contact {
  background: linear-gradient(
    165deg,
    var(--rose-200) 0%,
    var(--rose-100) 55%,
    var(--stone-50) 100%
  );
}











.section h2 {
  margin-top: 0;
  color: var(--rose-900);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
}

.section.contact h2 {
  color: var(--rose-950);
}







.featured-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.featured-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(80, 43, 63, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(42, 26, 36, 0.06);
}

.featured-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--rose-100);
}

.featured-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured-card__body {
  padding: 1rem 1.15rem 1.2rem;
  flex: 1;
}

.featured-card h3 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  color: var(--rose-950);
}

.featured-card__duration {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rose-600);
}

.featured-card__description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(31, 21, 32, 0.86);
}

/* ============================================================================
   WAXING SERVICES
   ============================================================================ */

.waxing {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(248, 242, 245, 0.95) 100%);
}

.center-heading {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--rose-950);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
}

.waxing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.waxing-card {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 1.5rem 1.25rem;
  background: rgba(255, 248, 250, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(80, 43, 63, 0.1);
  box-shadow: 0 6px 24px rgba(42, 26, 36, 0.06);
}

.waxing-card p {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}


 
 
 
 
 
 
 
 









































.site-footer {
  padding: 2rem 1rem;
  text-align: center;
  background: var(--rose-950);
  color: var(--text-light);
}

.site-footer .container {
  padding: 0;
}

.site-footer p {
  margin: 0.35rem 0;
}

@media (min-width: 880px) {
  .menu-toggle {
    display: none;
  }

  .menu-panel {
    display: block;
  }
}

@media (max-width: 879px) {
  .mega-nav {
    flex-wrap: wrap;
  }

  .menu-panel {
    width: 100%;
    text-align: left;
  }

  .menu-list {
    margin-top: 0.4rem;
    flex-direction: column;
    padding: 0.6rem;
    border: 1px solid rgba(80, 43, 63, 0.14);
    border-radius: 12px;
    background: #fff;

    align-items: flex-start;
    text-align: left;
  }

  .services-item {
    width: 100%;
  }

  .services-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .services-mega-menu {
    display: none;
    width: 100%;
    margin-top: 0.3rem;
    grid-template-columns: 1fr;
  }

  

  

  .featured-card h3 {
    font-weight: 700;
  }

  
}

@media (max-width: 600px) {
  .section {
    padding: 2rem 1rem;
  }

  .featured-strip {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 640px) {

    /* Example: inline display for something */
    

    /* Example: horizontal spacing between children */
    
    

    /* Example: padding */
    
}





/* ============================================================================
   RESTORED FROM styles_bak_1.css
   ============================================================================ */

.nav-link,
.services-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font: inherit;
  font-weight: 500;
  line-height: 1.2;
  background: none;
  color: var(--text-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-link:hover,
.services-trigger:hover,
.services-trigger[aria-expanded="true"] {
  background: #e8dff0;
}

.services-mega-menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 1.5rem;
}





.contact-info {
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(53, 29, 43, 0.08);
}

.contact-info p {
  margin: 1rem 0;
  font-size: 1rem;
}

.contact-details {
  margin-top: 1.5rem;
}

.contact-details p {
  margin: 0.75rem 0;
}

.contact-details a {
  color: var(--rose-600);
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover,
.maps-link:hover {
  text-decoration: underline;
}

.maps-link {
  color: var(--rose-600);
  text-decoration: none;
  font-weight: 500;
}

.maps-link--cta {
  display: inline-block;
  margin-top: 0.25rem;
}

.site-footer .maps-link {
  color: var(--rose-300);
}

.site-footer .maps-link:hover {
  color: var(--text-light);
}

@media (max-width: 879px) {
  .nav-link,
  .services-trigger {
    width: 100%;
    justify-content: flex-start;
  }

  .services-mega-menu__inner {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1rem;
  }
}

.menu-panel.open {
  display: block;
}

.services-mega-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-btn.active {
  background: var(--rose-900);
  border-color: var(--rose-900);
  color: var(--text-light);
}

@media (max-width: 879px) {
  .services-mega-menu.open {
    display: grid;
  }
}
