/* ============================================================
   BEAUTY SALON XHEVII v2 — Full Modern Build
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --charcoal: #1A1614;
  --charcoal-2: #2A2522;
  --noir: #0E0B0A;
  --rose-gold: #B7826A;
  --rose-gold-bright: #D4A28F;
  --rose-gold-deep: #8B5E48;
  --rose-glow: rgba(183, 130, 106, 0.4);
  --blush: #F5E8E0;
  --blush-deep: #EBD7CB;
  --cream: #FAF4ED;
  --cream-warm: #FDF8F1;
  --pearl: #FFFEFB;
  --ash: #6B6258;
  --ash-light: #9C9489;
  --line-soft: rgba(26, 22, 20, 0.08);
  --line-rose: rgba(183, 130, 106, 0.2);
  --line-rose-strong: rgba(183, 130, 106, 0.4);
  --shadow-sm: 0 8px 24px rgba(26, 22, 20, 0.05);
  --shadow-md: 0 20px 50px rgba(26, 22, 20, 0.1);
  --shadow-lg: 0 40px 100px rgba(26, 22, 20, 0.15);
  --shadow-rose: 0 20px 50px rgba(183, 130, 106, 0.3);
  --display: 'Playfair Display', 'Didot', serif;
  --body: 'Outfit', system-ui, sans-serif;
  --container: 1320px;
  --gutter: 28px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
::selection { background: var(--rose-gold); color: var(--cream); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--blush); }
::-webkit-scrollbar-thumb { background: var(--rose-gold); border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
}
.eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--rose-gold);
}
.eyebrow--light { color: var(--rose-gold-bright); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h3 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }

em.rose { color: var(--rose-gold-deep); font-style: italic; font-weight: 400; }
em.rose-light { color: var(--rose-gold-bright); font-style: italic; font-weight: 400; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 36px;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  will-change: transform;
}
.btn--rose { background: var(--rose-gold); color: var(--pearl); }
.btn--rose:hover { background: var(--rose-gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-rose); }
.btn--noir { background: var(--charcoal); color: var(--cream); }
.btn--noir:hover { background: var(--noir); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { color: var(--charcoal); border-color: rgba(26, 22, 20, 0.2); }
.btn--ghost:hover { border-color: var(--rose-gold); color: var(--rose-gold-deep); transform: translateY(-2px); }
.btn--ghost-light { color: var(--cream); border-color: rgba(250, 244, 237, 0.3); }
.btn--ghost-light:hover { border-color: var(--rose-gold-bright); color: var(--rose-gold-bright); transform: translateY(-2px); }
.btn .arrow { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn__label { display: inline-flex; align-items: center; gap: 12px; transition: transform .35s var(--ease); }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease);
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(14, 11, 10, 0.95);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--line-rose);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }

/* LOGO — recreated from real Beauty Salon Xhevii logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}
.logo__mark {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--noir);
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.logo__mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.25);
}
.logo__mark svg { width: 32px; height: 32px; color: var(--cream); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__main {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.logo__sub {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--rose-gold-bright);
  margin-top: 4px;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--rose-gold);
  transition: width .35s var(--ease);
}
.main-nav a:hover { color: var(--rose-gold-bright); }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta__social {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250, 244, 237, 0.08);
  border: 1px solid rgba(250, 244, 237, 0.18);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.header-cta__social:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.header-cta__social svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   NEW: TOP HERO SLIDER (full-width photo slideshow)
   ============================================================ */
.top-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  background: var(--noir);
}
.top-slider__track {
  position: absolute;
  inset: 0;
}
.top-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s var(--ease), visibility 0s linear 1.4s;
  display: flex;
  align-items: center;
}
.top-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s var(--ease), visibility 0s linear 0s;
  z-index: 2;
}
.top-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* Slot for slide backgrounds. Supports photos (via .top-slide__photo) and SVG art (.bg-art) */
.top-slide__bg-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.05);
  transition: transform 9s linear;
}
.top-slide.is-active .top-slide__bg-art {
  transform: scale(1.0);
}
/* Real photo background — used when an Unsplash photo is the slide visual */
.top-slide__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-slide__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(14, 11, 10, 0.92) 0%, rgba(14, 11, 10, 0.78) 35%, rgba(14, 11, 10, 0.5) 65%, rgba(14, 11, 10, 0.35) 100%);
  z-index: 2;
}
.top-slide__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: overlay;
  z-index: 3;
  pointer-events: none;
}

.top-slide__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  color: var(--cream);
}
.top-slide__content { max-width: 760px; }

.top-slide__num {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose-gold-bright);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .8s var(--ease) .2s, transform .8s var(--ease) .2s;
}
.top-slide__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rose-gold-bright);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .8s var(--ease) .35s, transform .8s var(--ease) .35s;
}
.top-slide__eyebrow::before {
  content: "";
  width: 48px; height: 1px;
  background: var(--rose-gold);
}

.top-slide__title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
}
.top-slide__title em {
  font-style: italic;
  color: var(--rose-gold-bright);
  font-weight: 400;
}
.top-slide__title-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.top-slide__title-line span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}

.top-slide__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.65;
  color: rgba(250, 244, 237, 0.78);
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease) .8s, transform 1s var(--ease) .8s;
}

.top-slide__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease) 1s, transform 1s var(--ease) 1s;
}

.top-slide.is-active .top-slide__num { opacity: 1; transform: translateY(0); }
.top-slide.is-active .top-slide__eyebrow { opacity: 1; transform: translateY(0); }
.top-slide.is-active .top-slide__title-line:nth-child(1) span { transform: translateY(0); transition-delay: .45s; }
.top-slide.is-active .top-slide__title-line:nth-child(2) span { transform: translateY(0); transition-delay: .6s; }
.top-slide.is-active .top-slide__title-line:nth-child(3) span { transform: translateY(0); transition-delay: .75s; }
.top-slide.is-active .top-slide__lede { opacity: 1; transform: translateY(0); }
.top-slide.is-active .top-slide__cta { opacity: 1; transform: translateY(0); }

/* Slider navigation */
.top-slider__progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(250, 244, 237, 0.08);
  z-index: 10;
}
.top-slider__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-gold-deep) 0%, var(--rose-gold) 50%, var(--rose-gold-bright) 100%);
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--rose-glow);
}
.top-slider__nav {
  position: absolute;
  bottom: 36px; left: var(--gutter);
  display: flex; align-items: center; gap: 24px;
  z-index: 11;
}
.top-slider__counter {
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.top-slider__counter .total { color: rgba(250, 244, 237, 0.4); }
.top-slider__dots {
  display: flex; gap: 8px;
  margin: 0 16px;
}
.top-slider__dot {
  width: 32px; height: 2px;
  background: rgba(250, 244, 237, 0.2);
  cursor: pointer;
  transition: background .25s var(--ease), width .35s var(--ease);
}
.top-slider__dot.is-active {
  background: var(--rose-gold);
  width: 64px;
  box-shadow: 0 0 12px var(--rose-glow);
}
.top-slider__arrows { display: flex; gap: 10px; }
.top-slider__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(14, 11, 10, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(183, 130, 106, 0.25);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.top-slider__arrow:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--charcoal);
  transform: scale(1.05);
}
.top-slider__arrow svg { width: 18px; height: 18px; }

/* ============================================================
   BG ART for slides — beauty illustrations
   ============================================================ */
.bg-art {
  width: 100%;
  height: 100%;
  position: relative;
}
.bg-art--1 { background: linear-gradient(135deg, #2A2522 0%, #4A3A30 50%, #6B4838 100%); }
.bg-art--2 { background: linear-gradient(135deg, #1A1614 0%, #4A2D2A 50%, #8B5E48 100%); }
.bg-art--3 { background: linear-gradient(135deg, #2D1F1A 0%, #5C3F30 50%, #B7826A 100%); }
.bg-art--4 { background: linear-gradient(135deg, #1A1614 0%, #3A2A26 50%, #6B5048 100%); }

.bg-art__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* MARQUEE */
.marquee {
  position: relative;
  padding: 32px 0;
  background: var(--blush);
  border-top: 1px solid var(--line-rose);
  border-bottom: 1px solid var(--line-rose);
  overflow: hidden;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--blush) 0%, transparent 100%); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--blush) 0%, transparent 100%); }
.marquee__track {
  display: flex; gap: 60px;
  animation: marqueeScroll 38s linear infinite;
  width: fit-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex; align-items: center; gap: 22px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-style: italic;
  color: var(--rose-gold-deep);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.marquee__item-dot {
  width: 7px; height: 7px;
  background: var(--rose-gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
.section { position: relative; padding: clamp(80px, 12vw, 160px) 0; }
.section--cream { background: var(--cream); }
.section--cream-warm { background: var(--cream-warm); }
.section--blush { background: var(--blush); }
.section--noir { background: var(--charcoal); color: var(--cream); }

.section__head {
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 920px;
}
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head .eyebrow { margin-bottom: 24px; }
.section__head h2 { margin-bottom: 26px; }
.section__head--light h2 { color: var(--cream); }
.section__head p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ash);
  max-width: 720px;
}
.section__head--light p { color: rgba(250, 244, 237, 0.75); }
.section__head--center p { margin-left: auto; margin-right: auto; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  position: relative;
  background: var(--cream-warm);
  border: 1px solid var(--line-soft);
  padding: 50px 40px;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s var(--ease);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--rose-gold);
  transition: width .55s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-gold);
}
.service-card:hover::after { width: 100%; }
.service-card__icon {
  flex-shrink: 0;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--blush);
  border: 1px solid var(--line-rose);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-gold-deep);
  transition: background .4s var(--ease), color .4s var(--ease), transform .5s var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--rose-gold);
  color: var(--cream);
  transform: scale(1.05) rotate(-4deg);
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card__num {
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--rose-gold-deep);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  display: block;
}
.service-card h3 { font-size: 1.6rem; margin-bottom: 14px; letter-spacing: -0.01em; }
.service-card h3 em { color: var(--rose-gold-deep); font-style: italic; }
.service-card p {
  color: var(--ash);
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card__price {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose-gold-deep);
  font-weight: 500;
}

/* GALLERY */
.gallery { position: relative; background: var(--cream); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  position: relative;
  aspect-ratio: 1;
  background: var(--blush);
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 22, 20, 0.65) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 2;
}
.gallery__item:hover::before { opacity: 1; }
.gallery__item:hover { transform: scale(1.02); z-index: 5; box-shadow: var(--shadow-lg); }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item--placeholder {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 50%, var(--rose-gold-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery__item--placeholder svg { width: 48px; height: 48px; color: var(--rose-gold-deep); opacity: 0.4; }
.gallery__item--ph2 { background: linear-gradient(135deg, var(--cream-warm) 0%, var(--blush) 50%, var(--rose-gold) 100%); }
.gallery__item--ph3 { background: linear-gradient(135deg, var(--blush-deep) 0%, var(--rose-gold-bright) 100%); }
.gallery__item--ph4 { background: linear-gradient(135deg, var(--cream) 0%, var(--blush-deep) 100%); }
.gallery__item__caption {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 3;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery__item:hover .gallery__item__caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery__cta { text-align: center; margin-top: 56px; }

/* Demo photo disclaimer — sits below gallery */
.gallery__disclaimer {
  text-align: center;
  margin-top: 36px;
  padding: 18px 24px;
  background: rgba(183, 130, 106, 0.08);
  border: 1px solid var(--line-rose);
  border-radius: 8px;
  font-size: 0.86rem;
  color: var(--ash);
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.gallery__disclaimer em {
  color: var(--rose-gold-deep);
  font-style: italic;
  font-weight: 500;
}
.gallery__disclaimer a {
  color: var(--rose-gold-deep);
  text-decoration: underline;
  font-weight: 500;
}

/* INSTAGRAM EMBED */
.instagram-embed { background: var(--cream-warm); position: relative; }
.instagram-embed__head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.instagram-embed__handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--rose-gold-deep);
  margin-top: 18px;
  margin-bottom: 30px;
  transition: color .25s var(--ease);
}
.instagram-embed__handle:hover { color: var(--rose-gold); }
.instagram-embed__handle svg { width: 22px; height: 22px; }
.ig-widget-placeholder {
  background: var(--cream);
  border: 2px dashed var(--line-rose-strong);
  padding: 60px 40px;
  text-align: center;
  margin: 0 auto;
  max-width: 920px;
}
.ig-widget-placeholder__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-gold-deep);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.ig-widget-placeholder__icon svg { width: 32px; height: 32px; }
.ig-widget-placeholder h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--charcoal); }
.ig-widget-placeholder h3 em { color: var(--rose-gold-deep); font-style: italic; }
.ig-widget-placeholder p { color: var(--ash); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.65; }
.ig-widget-placeholder code {
  display: inline-block;
  background: var(--charcoal);
  color: var(--rose-gold-bright);
  padding: 4px 10px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.82rem;
}

/* ABOUT */
.about { position: relative; background: var(--cream-warm); overflow: hidden; }
.about::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-gold) 0%, transparent 65%);
  opacity: 0.15;
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.about__visual {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 460px;
  margin: 0 auto;
}
.about__visual::before {
  content: "";
  position: absolute;
  top: 24px; left: 24px;
  width: 100%; height: 100%;
  border: 1px solid var(--rose-gold);
  z-index: 0;
}
.about__image {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  background: linear-gradient(170deg, var(--charcoal-2) 0%, var(--charcoal) 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about__image::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--rose-gold) 0%, transparent 65%);
  opacity: 0.2;
}
.about__image svg { width: 60%; position: relative; z-index: 1; opacity: 0.9; }
.about__badge {
  position: absolute;
  bottom: -36px; right: -36px;
  width: 170px; height: 170px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  z-index: 2;
  box-shadow: var(--shadow-rose);
  padding: 22px;
}
.about__badge-text {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.about__badge-sub {
  font-family: var(--body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 8px;
}
.about__content > p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 22px;
}
.about__content h2 { margin-bottom: 28px; }
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.about__feature::before {
  content: "✓";
  color: var(--rose-gold-deep);
  font-weight: 700;
  flex-shrink: 0;
}

/* TESTIMONIALS */
.testimonials { position: relative; background: var(--charcoal); color: var(--cream); overflow: hidden; }
.testimonials__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(183, 130, 106, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(60, 40, 30, 0.5) 0%, transparent 55%);
  pointer-events: none;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonial-slider { position: relative; max-width: 940px; margin: 0 auto; }
.testimonial-slider__viewport { position: relative; min-height: 380px; }
.testimonial-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(30px) scale(0.97);
  transition: opacity .8s var(--ease), transform .8s var(--ease), visibility 0s linear .8s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 48px;
  background: linear-gradient(135deg, rgba(245, 232, 224, 0.06) 0%, rgba(245, 232, 224, 0.02) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-rose);
}
.testimonial-slide.is-active {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
  transition: opacity .8s var(--ease), transform .8s var(--ease), visibility 0s linear 0s;
}
.testimonial-slide__mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--rose-gold-bright);
  margin-bottom: 14px;
}
.testimonial-slide__stars {
  color: var(--rose-gold-bright);
  letter-spacing: 4px;
  margin-bottom: 28px;
  font-size: 1rem;
}
.testimonial-slide__quote {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 36px;
  max-width: 720px;
}
.testimonial-slide__author {
  display: flex; align-items: center; gap: 16px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line-rose);
  width: 100%;
  justify-content: center;
}
.testimonial-slide__avatar {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
}
.testimonial-slide__name {
  font-family: var(--body);
  font-weight: 500;
  color: var(--cream);
  font-size: 0.96rem;
  text-align: left;
  display: block;
}
.testimonial-slide__role {
  font-size: 0.82rem;
  color: rgba(250, 244, 237, 0.6);
  text-align: left;
}
.testimonial-slider__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
}
.testimonial-slider__dots { display: flex; gap: 10px; }
.testimonial-slider__dot {
  width: 8px; height: 8px;
  background: rgba(250, 244, 237, 0.2);
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.testimonial-slider__dot.is-active {
  background: var(--rose-gold);
  transform: scale(1.5);
}
.testimonial-slider__arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(250, 244, 237, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-rose);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.testimonial-slider__arrow:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--charcoal);
}
.testimonial-slider__arrow svg { width: 18px; height: 18px; }

/* BOOKING */
.booking-cta { position: relative; background: var(--blush); padding: clamp(80px, 11vw, 140px) 0; overflow: hidden; }
.booking-cta::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-gold) 0%, transparent 65%);
  opacity: 0.18;
}
.booking-cta::after {
  content: "";
  position: absolute;
  bottom: -100px; right: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--charcoal) 0%, transparent 65%);
  opacity: 0.06;
}
.booking-cta__inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.booking-cta h2 { font-size: clamp(2.2rem, 5.5vw, 4.4rem); margin-bottom: 26px; }
.booking-cta h2 em { color: var(--rose-gold-deep); font-style: italic; }
.booking-cta p {
  color: var(--charcoal);
  opacity: 0.78;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.booking-cta__buttons {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-cta__contact {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.booking-cta__contact-item { text-align: center; }
.booking-cta__contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
  margin-bottom: 8px;
}
.booking-cta__contact-value {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--charcoal);
  font-style: italic;
}

/* FOOTER */
.site-footer { background: var(--noir); color: rgba(250, 244, 237, 0.7); padding: 80px 0 30px; position: relative; overflow: hidden; }
.site-footer::before {
  content: "";
  position: absolute;
  top: -150px; right: -100px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-gold) 0%, transparent 70%);
  opacity: 0.06;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.site-footer__brand .logo { margin-bottom: 24px; }
.site-footer__brand p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; max-width: 320px; }
.site-footer__social {
  display: flex; gap: 14px;
  margin-top: 18px;
}
.site-footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(250, 244, 237, 0.05);
  border: 1px solid var(--line-rose);
  color: var(--rose-gold-bright);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.site-footer__social a:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.site-footer__social svg { width: 18px; height: 18px; }
.site-footer__col h4 {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 24px;
}
.site-footer__col ul { list-style: none; }
.site-footer__col ul li { margin-bottom: 14px; }
.site-footer__col a {
  font-size: 0.94rem;
  color: rgba(250, 244, 237, 0.7);
  transition: color .25s var(--ease), padding-left .3s var(--ease);
}
.site-footer__col a:hover { color: var(--rose-gold); padding-left: 4px; }
.site-footer__contact-item { margin-bottom: 18px; font-size: 0.93rem; line-height: 1.5; }
.site-footer__contact-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 6px;
}
.site-footer__bottom {
  border-top: 1px solid var(--line-rose);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
  position: relative;
  z-index: 1;
}
.site-footer__bottom a { color: var(--rose-gold); }

/* ============================================================
   CHATBOT WIDGET — bottom-right floating
   ============================================================ */
.chatbot {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  font-family: var(--body);
}
.chatbot__toggle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(183, 130, 106, 0.45);
  transition: transform .3s var(--ease), background .3s var(--ease);
  border: 0;
  position: relative;
}
.chatbot__toggle:hover { background: var(--rose-gold-bright); transform: scale(1.05); }
.chatbot__toggle svg { width: 28px; height: 28px; transition: transform .3s var(--ease); }
.chatbot.is-open .chatbot__toggle svg { transform: rotate(135deg); }
.chatbot__toggle::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--rose-gold);
  opacity: 0.4;
  animation: chatbotPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes chatbotPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

.chatbot__panel {
  position: absolute;
  bottom: 84px; right: 0;
  width: 360px;
  max-width: calc(100vw - 56px);
  height: 520px;
  max-height: calc(100vh - 140px);
  background: var(--cream-warm);
  border: 1px solid var(--line-rose);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  overflow: hidden;
}
.chatbot.is-open .chatbot__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.chatbot__header {
  background: var(--charcoal);
  color: var(--cream);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-rose);
}
.chatbot__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--noir);
  border: 1px solid var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cream);
}
.chatbot__avatar svg { width: 22px; height: 22px; }
.chatbot__title-block { flex: 1; }
.chatbot__title {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--cream);
}
.chatbot__status {
  font-size: 0.72rem;
  color: var(--rose-gold-bright);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chatbot__status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
}
.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  animation: msgIn .35s var(--ease);
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg--bot {
  align-self: flex-start;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 16px 16px 16px 4px;
  color: var(--charcoal);
}
.chat-msg--user {
  align-self: flex-end;
  background: var(--rose-gold);
  color: var(--cream);
  border-radius: 16px 16px 4px 16px;
}
.chat-msg a { color: var(--rose-gold-deep); text-decoration: underline; font-weight: 500; }
.chat-msg--user a { color: var(--cream); }
.chat-msg strong { font-weight: 600; }

.chatbot__quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 18px 12px;
  margin-top: -4px;
}
.chat-quick-reply {
  font-size: 0.76rem;
  padding: 7px 14px;
  background: var(--blush);
  border: 1px solid var(--line-rose);
  color: var(--rose-gold-deep);
  border-radius: 20px;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  font-family: inherit;
  white-space: nowrap;
}
.chat-quick-reply:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--cream);
  transform: translateY(-1px);
}

.chatbot__input {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: var(--cream-warm);
  border-top: 1px solid var(--line-soft);
}
.chatbot__input input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--line-rose);
  background: var(--cream);
  border-radius: 22px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .25s var(--ease);
}
.chatbot__input input:focus { border-color: var(--rose-gold); }
.chatbot__input button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose-gold);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s var(--ease);
}
.chatbot__input button:hover { background: var(--rose-gold-deep); }
.chatbot__input button svg { width: 18px; height: 18px; }

/* SCROLL REVEALS */
.reveal,
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible,
.stagger.is-visible > * {
  opacity: 1; transform: translateY(0);
}
.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: .4s; }
.stagger.is-visible > *:nth-child(7) { transition-delay: .48s; }
.stagger.is-visible > *:nth-child(8) { transition-delay: .56s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .top-slider { height: 88vh; min-height: 580px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__visual { max-width: 380px; }
  .about__features { grid-template-columns: 1fr; }
  .booking-cta__contact { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}
@media (max-width: 880px) {
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 380px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px;
    gap: 28px;
    transition: right .4s var(--ease);
    border-left: 1px solid var(--line-rose);
  }
  .main-nav.is-open { right: 0; }
  .main-nav a { font-size: 1.1rem; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .top-slider__nav { bottom: 20px; left: 16px; gap: 14px; }
  .top-slider__dots { display: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .service-card { flex-direction: column; gap: 24px; padding: 40px 30px; }
  .about__badge { width: 130px; height: 130px; bottom: -20px; right: -20px; }
  .about__badge-text { font-size: 1.1rem; }
  .testimonial-slide { padding: 40px 28px; min-height: 420px; }
  .testimonial-slider__viewport { min-height: 460px; }
  .marquee__item { font-size: 1.2rem; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .chatbot { bottom: 16px; right: 16px; }
  .chatbot__toggle { width: 56px; height: 56px; }
  .chatbot__panel { width: calc(100vw - 32px); height: 520px; bottom: 76px; right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
