:root {
  --rose: #b4225a;
  --rose-deep: #7d1640;
  --rose-soft: #e88fa8;
  --gold: #ad8548;
  --gold-light: #ecdcb8;
  --cream: #fbf7f2;
  --blush: #fbeef1;
  --charcoal: #221c1e;
  --gray: #756b70;
  --border: #ecdfd6;
  --shadow: 0 22px 50px -24px rgba(125, 22, 64, 0.28);
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  line-height: 1.15;
}

p { line-height: 1.75; color: var(--gray); margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 .9em;
  position: relative;
}
.eyebrow.center { text-align: center; }
.eyebrow.center::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin: .9em auto 0;
  background: var(--gold);
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.section-title.center { text-align: center; }
.section-sub { text-align: center; max-width: 620px; margin: 0 auto 2.5em; }
.center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .95em 2em;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { box-shadow: 0 26px 55px -22px rgba(125, 22, 64, 0.4); }
.btn-outline {
  border-color: var(--gold);
  color: var(--rose-deep);
  background: transparent;
}
.btn-outline:hover { background: var(--gold-light); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,247,242,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand-icon { width: 40px; height: 40px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--rose-deep); }
.brand-text em { font-style: normal; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

.main-nav { display: flex; gap: 30px; }
.main-nav a { font-size: .84rem; font-weight: 500; letter-spacing: .03em; color: var(--charcoal); }
.main-nav a:hover { color: var(--rose-deep); }

.nav-cta { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: none; width: 34px; height: 34px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; height: 1px; background: var(--charcoal); }

/* Hero */
.hero { padding: 64px 0 84px; background: linear-gradient(180deg, var(--blush), var(--cream)); }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); color: var(--charcoal); font-style: italic; }
.hero-sub { font-size: 1.02rem; max-width: 480px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 1.8em 0; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust li { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--rose-deep); padding-left: 20px; position: relative; }
.hero-trust li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--gold-light); }

/* Gallery */
.gallery { padding: 84px 0; }
.gallery .slider { max-width: 480px; margin: 2.5em auto 0; }

/* Slider */
.slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold-light);
  aspect-ratio: 4 / 5;
  background: var(--charcoal);
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform .6s cubic-bezier(.65,0,.35,1);
}
.slide { min-width: 100%; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: rgba(251,247,242,.9); color: var(--rose-deep);
  cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.slider-arrow:hover { background: #fff; }
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }
.slider-dots {
  position: absolute; bottom: 14px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px;
}
.slider-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.5); cursor: pointer; padding: 0;
  transition: background .15s ease, transform .15s ease;
}
.slider-dots button.active { background: var(--gold-light); transform: scale(1.3); }

/* Values */
.values { padding: 20px 0 84px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.value-icon {
  width: 54px; height: 54px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-deep);
}
.value-card h3 { font-size: 1.05rem; }
.value-card p { margin: 0; font-size: .9rem; }

/* Services */
.services { padding: 84px 0; background: var(--blush); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; margin-top: 2.5em; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  display: block;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.service-card:hover .service-cta { color: var(--rose-deep); gap: .55em; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .35em; }
.service-card p { font-size: .87rem; min-height: 3em; }
.service-card .price { font-size: 1.55rem; font-weight: 700; color: var(--rose-deep); font-family: 'Playfair Display', serif; }
.service-card .price span { font-size: .82rem; font-weight: 400; color: var(--gray); }
.service-card.featured { border-color: var(--gold); }
.service-cta {
  display: inline-flex; align-items: center; gap: .35em;
  margin-top: 16px; font-size: .76rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--gray); transition: gap .15s ease, color .15s ease;
}
.badge {
  position: absolute; top: -12px; right: 20px;
  background: linear-gradient(135deg, var(--gold), #8f6c34);
  color: #fff; font-size: .68rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--radius);
}

/* Video */
.video-section { padding: 84px 0; }
.video-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.video-text p:last-child { max-width: 420px; }
.video-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--gold-light); background: #000; aspect-ratio: 16/10; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px;
  background: none; border: none; cursor: pointer; padding: 0;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
}
.play-btn.hidden { display: none; }

/* Booking */
.booking { padding: 84px 0; background: var(--blush); }
.booking-box {
  max-width: 640px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
}
.booking-step { margin-bottom: 28px; }
.booking-step:last-child { margin-bottom: 0; }
.booking-step > label { display: block; font-weight: 600; margin-bottom: 12px; font-size: .88rem; letter-spacing: .02em; }
#serviceSelect, #clientName {
  width: 100%; padding: 13px 14px; border-radius: var(--radius);
  border: 1px solid var(--border); font-family: inherit; font-size: .92rem;
  background: #fff; color: var(--charcoal);
}
#serviceSelect:focus, #clientName:focus { outline: 1px solid var(--gold); }
#serviceSelect.flash { animation: flashGold 1s ease; }
@keyframes flashGold {
  0%, 100% { box-shadow: none; }
  30% { box-shadow: 0 0 0 4px var(--gold-light); border-color: var(--gold); }
}

.calendar-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-weight: 600; }
.calendar-head button { background: var(--blush); border: 1px solid var(--border); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; color: var(--rose-deep); font-size: 1rem; }
.calendar-weekdays { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px; }
.calendar-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.calendar-days button {
  aspect-ratio: 1; border-radius: var(--radius); border: none; background: var(--cream);
  cursor: pointer; font-size: .86rem; font-family: inherit; color: var(--charcoal);
}
.calendar-days button:disabled { color: #ddd3cb; background: transparent; cursor: not-allowed; }
.calendar-days button.selected { background: var(--rose-deep); color: #fff; font-weight: 600; }
.calendar-days button:not(:disabled):hover { background: var(--gold-light); }
.calendar-days .empty { visibility: hidden; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 8px; }
.slots button {
  padding: 10px 6px; border-radius: var(--radius); border: 1px solid var(--border);
  background: #fff; cursor: pointer; font-family: inherit; font-size: .84rem;
}
.slots button:disabled { color: #d6cbc3; background: var(--cream); border-color: var(--border); cursor: not-allowed; text-decoration: line-through; }
.slots button.selected { background: var(--rose-deep); color: #fff; border-color: var(--rose-deep); }
.slots button:not(:disabled):hover { border-color: var(--gold); }

.btn-confirm { width: 100%; justify-content: center; margin-top: 16px; }

/* Contact */
.contact { padding: 64px 0; }
.contact-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-logo { width: 200px; margin-bottom: 12px; }
.contact-info { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; text-align: right; }
.contact-info a { font-weight: 600; color: var(--rose-deep); }
.contact-info span { color: var(--gray); font-size: .88rem; }

.site-footer { border-top: 1px solid var(--border); padding: 22px 0; text-align: center; }
.site-footer p { margin: 0; font-size: .78rem; letter-spacing: .02em; color: var(--gray); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .video-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .slider { aspect-ratio: 4 / 3; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .contact-info { align-items: flex-start; text-align: left; }
}
@media (max-width: 780px) {
  .main-nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 16px 24px; gap: 4px; border-bottom: 1px solid var(--border); transform: translateY(-130%); transition: transform .25s ease; }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
