/* ============================================================
   BEAUTY BY VICKY — PREMIUM STYLESHEET
   Luxury editorial aesthetic with warm femininity
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300&family=Pinyon+Script&display=swap');

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

:root {
  --blush: #f2d4dc;
  --blush-soft: #f9edf1;
  --rose: #e8a0b4;
  --deep-rose: #c76e8a;
  --deep-rose-dark: #a85572;
  --cream: #fdf8f5;
  --warm-white: #fefcfa;
  --mauve: #9c6b7d;
  --charcoal: #2d2226;
  --soft-black: #3a2e33;
  --gold: #c9a96e;
  --gold-light: #e6d5a8;
  --gold-shimmer: #d4b97c;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--soft-black);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--blush);
  color: var(--charcoal);
}

a { transition: all 0.3s var(--transition-smooth); }

/* ============================================================
   CUSTOM CURSOR (desktop only)
   ============================================================ */
.cursor-dot, .cursor-ring {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block; position: fixed; top: 0; left: 0; width: 6px; height: 6px;
    background: var(--deep-rose); border-radius: 50%; pointer-events: none;
    z-index: 9999; transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
  }
  .cursor-ring {
    display: block; position: fixed; top: 0; left: 0; width: 36px; height: 36px;
    border: 1px solid rgba(199,110,138,0.3); border-radius: 50%; pointer-events: none;
    z-index: 9998; transform: translate(-50%, -50%);
    transition: width 0.3s var(--transition-smooth), height 0.3s var(--transition-smooth),
                border-color 0.3s;
  }
  body:has(a:hover) .cursor-dot,
  body:has(button:hover) .cursor-dot {
    width: 12px; height: 12px; background: var(--gold);
  }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring {
    width: 50px; height: 50px; border-color: rgba(201,169,110,0.4);
  }
}

/* ============================================================
   NAVIGATION — frosted glass, luxurious
   ============================================================ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s var(--transition-smooth);
}
nav.scrolled {
  background: rgba(253, 248, 245, 0.88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  padding: 0.9rem 3rem;
  box-shadow: 0 1px 30px rgba(45,34,38,0.04);
}
.nav-logo {
  font-family: 'Pinyon Script', cursive;
  font-size: 1.7rem; color: var(--deep-rose);
  text-decoration: none; letter-spacing: 0.5px;
  transition: transform 0.3s var(--transition-smooth);
}
.nav-logo:hover { transform: scale(1.02); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--soft-black);
  font-size: 0.75rem; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1px;
  background: var(--deep-rose);
  transition: width 0.4s var(--transition-smooth), left 0.4s var(--transition-smooth);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; left: 0; }
.nav-links a.active { color: var(--deep-rose); }

/* Book Now button in nav */
.nav-cta {
  padding: 0.6rem 1.5rem !important;
  background: var(--deep-rose) !important;
  color: white !important;
  letter-spacing: 2px !important;
  font-size: 0.7rem !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--transition-smooth) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--charcoal) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45,34,38,0.15);
}

.menu-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 6px;
  z-index: 101;
}
.menu-toggle span {
  width: 26px; height: 1.5px; background: var(--soft-black);
  transition: all 0.4s var(--transition-smooth); display: block;
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu — full screen luxury */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--transition-smooth), visibility 0.5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--charcoal); text-decoration: none;
  font-weight: 300; padding: 0.6rem 0;
  transition: color 0.3s, transform 0.3s var(--transition-smooth);
  transform: translateY(20px); opacity: 0;
}
.mobile-menu.open a {
  transform: translateY(0); opacity: 1;
}
.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu a:nth-child(8) { transition-delay: 0.45s; }
.mobile-menu a:hover { color: var(--deep-rose); transform: translateX(8px); }

/* ============================================================
   PAGE HERO — Subpages
   ============================================================ */
.page-hero {
  padding: 11rem 3rem 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero.blush-bg {
  background: linear-gradient(170deg, var(--cream) 0%, var(--blush-soft) 40%, var(--blush) 100%);
}
.page-hero.dark-bg { background: var(--charcoal); }
.page-hero.dark-bg .page-hero-label { color: var(--gold-light); }
.page-hero.dark-bg .page-hero-title { color: var(--cream); }
.page-hero.dark-bg .page-hero-subtitle { color: var(--rose); }

/* Decorative elements on hero */
.page-hero::before {
  content: ''; position: absolute; width: 300px; height: 300px;
  border: 1px solid rgba(201,169,110,0.12); border-radius: 50%;
  top: 5rem; right: -5rem;
  animation: heroOrb 20s ease-in-out infinite;
}
.page-hero::after {
  content: ''; position: absolute; width: 200px; height: 200px;
  border: 1px solid rgba(232,160,180,0.12); border-radius: 50%;
  bottom: 2rem; left: -3rem;
  animation: heroOrb 15s ease-in-out infinite reverse;
}
@keyframes heroOrb {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(15px, -20px) rotate(90deg); }
  50% { transform: translate(-10px, -35px) rotate(180deg); }
  75% { transform: translate(20px, -15px) rotate(270deg); }
}

.page-hero-label {
  font-size: 0.68rem; letter-spacing: 6px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.2rem;
  opacity: 0; animation: heroFadeUp 0.8s ease 0.2s forwards;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 300;
  color: var(--charcoal); margin-bottom: 1.2rem;
  opacity: 0; animation: heroFadeUp 0.8s ease 0.4s forwards;
}
.page-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 300;
  font-style: italic; color: var(--mauve);
  max-width: 500px; margin: 0 auto;
  opacity: 0; animation: heroFadeUp 0.8s ease 0.6s forwards;
}
.page-hero .section-divider {
  opacity: 0; animation: heroFadeUp 0.8s ease 0.5s forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION BASICS
   ============================================================ */
section { padding: 7rem 3rem; }
.section-label {
  font-size: 0.68rem; letter-spacing: 6px; text-transform: uppercase;
  color: var(--rose); text-align: center; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 300;
  text-align: center; color: var(--charcoal); margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
.section-divider {
  width: 50px; height: 1px; background: var(--gold);
  margin: 0 auto 3.5rem;
}
.section-text {
  max-width: 650px; margin: 0 auto 3rem; text-align: center;
  font-size: 0.95rem; color: var(--mauve); line-height: 2;
}

/* ============================================================
   SCROLL REVEAL — stagger capable
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.7s; }

/* ============================================================
   PARALLAX IMAGES
   ============================================================ */
.parallax-section {
  position: relative; overflow: hidden;
  min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
}
.parallax-bg {
  position: absolute; inset: -15% 0; width: 100%;
  background-size: cover; background-position: center;
  will-change: transform;
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(45,34,38,0.4), rgba(45,34,38,0.6));
}
.parallax-content {
  position: relative; z-index: 2; text-align: center; padding: 3rem;
}
.parallax-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: white; margin-bottom: 1rem; letter-spacing: 1px;
}
.parallax-content p {
  font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem;
  max-width: 450px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block; padding: 1rem 3rem;
  background: var(--deep-rose); color: white;
  text-decoration: none; font-size: 0.78rem;
  letter-spacing: 3px; text-transform: uppercase;
  font-weight: 400; border: none; cursor: pointer;
  transition: all 0.4s var(--transition-smooth);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--charcoal);
  transform: translateX(-101%);
  transition: transform 0.4s var(--transition-smooth);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(45,34,38,0.2); transform: translateY(-2px); }

.btn-outline {
  display: inline-block; padding: 0.9rem 2.5rem;
  border: 1px solid var(--deep-rose); color: var(--deep-rose);
  text-decoration: none; font-size: 0.78rem;
  letter-spacing: 3px; text-transform: uppercase;
  font-weight: 400; background: transparent;
  transition: all 0.4s var(--transition-smooth);
}
.btn-outline:hover {
  background: var(--deep-rose); color: white;
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(199,110,138,0.2);
}

.btn-white {
  display: inline-block; padding: 1rem 3rem;
  background: white; color: var(--deep-rose);
  text-decoration: none; font-size: 0.78rem;
  letter-spacing: 3px; text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s var(--transition-smooth);
}
.btn-white:hover {
  background: var(--cream); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* ============================================================
   FOOTER — editorial luxury
   ============================================================ */
.pre-footer {
  background: linear-gradient(135deg, var(--deep-rose), var(--deep-rose-dark));
  text-align: center; padding: 5rem 3rem;
  position: relative; overflow: hidden;
}
.pre-footer::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06), transparent 50%);
}
.pre-footer h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 300;
  color: white; margin-bottom: 0.8rem; position: relative;
}
.pre-footer p {
  font-size: 0.92rem; color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem; position: relative;
}

footer {
  background: var(--charcoal); color: var(--blush);
  padding: 5rem 3rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .footer-logo {
  font-family: 'Pinyon Script', cursive; font-size: 2.2rem;
  color: var(--rose); margin-bottom: 1.2rem; display: block;
}
.footer-brand p { font-size: 0.85rem; color: rgba(156,107,125,0.8); line-height: 1.9; }
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-weight: 400; color: var(--cream); margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.footer-col a {
  display: block; color: rgba(156,107,125,0.7); text-decoration: none;
  font-size: 0.82rem; margin-bottom: 0.7rem;
  transition: color 0.3s, transform 0.3s;
}
.footer-col a:hover { color: var(--rose); transform: translateX(3px); }
.footer-bottom {
  text-align: center; padding-top: 2.5rem;
  border-top: 1px solid rgba(232,160,180,0.08);
}
.footer-bottom p {
  font-size: 0.7rem; color: rgba(156,107,125,0.5); letter-spacing: 1.5px;
}

/* ============================================================
   GRAIN OVERLAY — subtle texture
   ============================================================ */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ============================================================
   SMOOTH PAGE TRANSITION
   ============================================================ */
.page-transition {
  position: fixed; inset: 0; background: var(--blush);
  z-index: 10000; transform: scaleY(0); transform-origin: top;
  transition: transform 0.6s var(--transition-smooth);
}
.page-transition.entering { transform: scaleY(1); transform-origin: bottom; }
.page-transition.leaving { transform: scaleY(0); transform-origin: top; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  section { padding: 5rem 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu { display: flex; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 9rem 1.5rem 4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-col a:hover { transform: none; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

@media (max-width: 480px) {
  .page-hero { padding: 8rem 1.2rem 3rem; }
  section { padding: 3.5rem 1.2rem; }
}


/* ============================================================
   PHOTO-HEAVY ADDITIONS — replace icons with imagery
   ============================================================ */

/* Full-bleed image sections */
.img-section {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 50vh;
}
.img-section img.section-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.img-section .overlay {
  position: absolute; inset: 0; z-index: 1;
}
.img-section .content {
  position: relative; z-index: 2;
}

/* Split sections — text + image */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 60vh;
}
.split-section.reverse { direction: rtl; }
.split-section.reverse > * { direction: ltr; }
.split-img {
  position: relative; overflow: hidden;
}
.split-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.split-img:hover img { transform: scale(1.04); }
.split-text {
  display: flex; align-items: center; padding: 4rem 5rem;
}
.split-text-inner h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 300; color: var(--charcoal); margin-bottom: 1.5rem;
  line-height: 1.3;
}
.split-text-inner p {
  font-size: 0.92rem; color: var(--mauve); line-height: 2;
  margin-bottom: 1.2rem;
}
.split-text-inner .price-tag {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  color: var(--deep-rose); margin-top: 1rem;
}

/* Photo grid for services */
.photo-service-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
}
.photo-service {
  position: relative; overflow: hidden; min-height: 400px;
  display: flex; align-items: flex-end;
}
.photo-service img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.8s var(--transition-smooth);
}
.photo-service:hover img { transform: scale(1.06); }
.photo-service .ps-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,34,38,0.75) 0%, rgba(45,34,38,0.1) 50%, transparent 100%);
  transition: background 0.5s;
}
.photo-service:hover .ps-overlay {
  background: linear-gradient(to top, rgba(45,34,38,0.85) 0%, rgba(45,34,38,0.2) 60%, transparent 100%);
}
.photo-service .ps-content {
  position: relative; z-index: 2; padding: 2.5rem;
  transform: translateY(10px); transition: transform 0.5s var(--transition-smooth);
}
.photo-service:hover .ps-content { transform: translateY(0); }
.photo-service .ps-content h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  font-weight: 400; color: white; margin-bottom: 0.5rem;
}
.photo-service .ps-content p {
  font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.5s, opacity 0.5s;
  opacity: 0;
}
.photo-service:hover .ps-content p { max-height: 200px; opacity: 1; }
.photo-service .ps-content .ps-price {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: var(--gold-light); margin-top: 0.5rem;
}

/* Hero with background photo */
.hero-photo {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-photo img.hero-bg-img {
  position: absolute; inset: -5%; width: 110%; height: 110%;
  object-fit: cover; filter: brightness(0.35);
}
.hero-photo .hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(45,34,38,0.3) 0%, rgba(45,34,38,0.6) 100%);
}

@media (max-width: 768px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section.reverse { direction: ltr; }
  .split-text { padding: 3rem 2rem; }
  .split-img { min-height: 300px; }
  .photo-service-grid { grid-template-columns: 1fr; }
  .photo-service { min-height: 300px; }
}

@keyframes hF{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
