/* ============================================
   LUMIRE BEAUTY STUDIO  services.css
   Inherits brand tokens; self-contained file
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rose: #c4808a;
  --rose-deep: #a3616b;
  --blush: #f2e4e4;
  --blush-light: #faf4f4;
  --mauve: #8b5e6d;
  --ivory: #fdf8f3;
  --charcoal: #2c2a29;
  --mid: #6b5f5f;
  --white: #ffffff;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", sans-serif;
  --radius: 6px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
}

/*  UTILITY  */
.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 0.6rem;
}

em {
  font-style: italic;
  color: var(--rose-deep);
}

/*  BUTTONS  */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

/* 
   NAV
 */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 128, 138, 0.15);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--rose);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
}
.nav-phone {
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.05em;
}

.btn-nav {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--rose);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn-nav:hover {
  background: var(--rose-deep);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--charcoal);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ivory);
  border-top: 1px solid var(--blush);
  padding: 1rem 2rem;
  gap: 1rem;
}
.mobile-menu a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
}
.mobile-menu.open {
  display: flex;
}

/* 
   HERO BANNER
 */
.hero-banner {
  position: relative;
  height: 400px;
  margin-top: 70px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #c8a0a8 0%,
    #a07888 30%,
    #7a5868 60%,
    #5a3a4a 100%
  );
  /* Overlay shimmer */
}
.hero-banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 42, 41, 0.65) 0%,
    rgba(44, 42, 41, 0.1) 60%,
    transparent 100%
  );
}

/* Decorative texture */
.hero-banner-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, #fff 1px, transparent 1px);
  background-size:
    40px 40px,
    60px 60px,
    80px 80px;
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  padding: 3rem 5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-banner-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-banner-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--rose);
}
.breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.9);
}
.breadcrumb span:first-of-type {
  color: rgba(255, 255, 255, 0.4);
}

/* 
   INTRO
 */
.services-intro {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--blush);
}
.si-inner {
  max-width: 680px;
  margin: 0 auto;
}
.si-inner p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.95;
}

/* 
   SERVICES GRID
 */
.services-grid-section {
  padding: 5rem 2rem 6rem;
  background: var(--ivory);
}

.services-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Each card */
.sc {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.sc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

/* Image fills entire card */
.sc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.sc:hover .sc-img {
  transform: scale(1.06);
}

/* Unique gradient per card  evokes each treatment */
.sc-img-1 {
  background: linear-gradient(160deg, #e0c4c8 0%, #c49094 40%, #9a7080 100%);
}
.sc-img-2 {
  background: linear-gradient(160deg, #d4b8bc 0%, #b08090 40%, #7a5868 100%);
}
.sc-img-3 {
  background: linear-gradient(160deg, #e8c8cc 0%, #d09098 40%, #a07080 100%);
}
.sc-img-4 {
  background: linear-gradient(160deg, #c8b0b4 0%, #a08090 40%, #6d5060 100%);
}
.sc-img-5 {
  background: linear-gradient(160deg, #d8c0c4 0%, #b89098 40%, #886070 100%);
}
.sc-img-6 {
  background: linear-gradient(160deg, #ccc0c4 0%, #a89098 40%, #786070 100%);
}
.sc-img-7 {
  background: linear-gradient(160deg, #d0b8bc 0%, #b08888 40%, #805868 100%);
}
.sc-img-8 {
  background: linear-gradient(160deg, #e0c8cc 0%, #c09898 40%, #907080 100%);
}
.sc-img-9 {
  background: linear-gradient(160deg, #d8b0b8 0%, #b07888 40%, #806070 100%);
}

/* Add a face/skin silhouette feeling with pseudo shapes */
.sc-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 70%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50% 50% 0 0;
}

/* Gradient overlay always visible at bottom */
.sc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(35, 25, 28, 0.85) 0%,
    rgba(35, 25, 28, 0.3) 45%,
    transparent 70%
  );
  transition: opacity var(--transition);
}

/* Overlay content */
.sc-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.4rem;
}

.sc-cat {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 0.35rem;
}

.sc-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0;
  transition: margin-bottom var(--transition);
}

/* Description  hidden by default, slides in on hover */
.sc-overlay p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.35s ease,
    margin var(--transition);
  margin-top: 0;
}

.sc:hover .sc-overlay p {
  max-height: 100px;
  opacity: 1;
  margin-top: 0.6rem;
}

.sc-btn {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 0.5rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  margin-top: 1rem;
  align-self: flex-start;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.25s ease;
}

.sc:hover .sc-btn {
  opacity: 1;
  transform: translateY(0);
}

.sc-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
}

/* 
   PROMO SPLIT
 */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--blush-light);
}

.promo-img-side {
  overflow: hidden;
}
.promo-img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(
    140deg,
    #d8b8bc 0%,
    #b89098 35%,
    #8a6878 65%,
    #5a4050 100%
  );
  position: relative;
}
.promo-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 80%;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50% 50% 0 0;
}

.promo-card-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.promo-card {
  background: var(--blush);
  border-radius: 12px;
  padding: 3.5rem 3rem;
  max-width: 460px;
  width: 100%;
  border: 1px solid rgba(196, 128, 138, 0.2);
}

.promo-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.promo-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.promo-points {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(196, 128, 138, 0.25);
  padding-top: 1.5rem;
}
.promo-points li {
  font-size: 0.8rem;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* 
   FOOTER
 */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 5rem;
  overflow: hidden;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  transition: all var(--transition);
}
.social-links a:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-col p {
  font-size: 0.85rem;
  line-height: 1.9;
}
.footer-col .hours {
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 1200px;
  margin: 0 auto;
}
.footer-strip {
  background: var(--rose);
  padding: 0.75rem 0;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
}
.footer-strip span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  padding-right: 2rem;
  animation: marquee 20s linear infinite;
  display: inline-block;
}
.footer-strip span:nth-child(2) {
  animation-delay: -10s;
}

/* 
   ANIMATIONS
 */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 
   RESPONSIVE
 */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-split {
    grid-template-columns: 1fr;
  }
  .promo-img {
    min-height: 280px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-right {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero-banner-content {
    padding: 2.5rem 1.5rem;
  }
  .hero-banner {
    height: 320px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .sc {
    height: 280px;
  }
  /* Always show desc + btn on mobile (no hover) */
  .sc-overlay p {
    max-height: 80px;
    opacity: 1;
    margin-top: 0.5rem;
  }
  .sc-btn {
    opacity: 1;
    transform: none;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .promo-card {
    padding: 2.5rem 1.5rem;
  }
}
