/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --plum-50: #f6f3fb;
  --plum-100: #ece5f5;
  --plum-200: #d5c5e8;
  --plum-300: #b89bd6;
  --plum-400: #9970c0;
  --plum-500: #7d4fa8;
  --plum-600: #623a8a;
  --plum-700: #4c2c6c;
  --plum-800: #3a2153;
  --plum-900: #2c1940;

  --leaf-50: #f1f8f4;
  --leaf-100: #dcefe3;
  --leaf-200: #b6ddc6;
  --leaf-300: #87c4a3;
  --leaf-400: #5aa87e;
  --leaf-500: #3d8c63;
  --leaf-600: #2f704f;
  --leaf-700: #265941;

  --blush-100: #fbe4e6;
  --blush-400: #e17685;

  --white: #ffffff;
  --font-sans: 'Poppins', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--plum-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Layout ===== */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.display-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--plum-900);
  line-height: 1.15;
}

.section-eyebrow {
  display: inline-block;
  color: var(--leaf-600);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header .display-title {
  font-size: 2.5rem;
  margin-top: 12px;
}

.section-subtitle {
  color: rgba(76, 44, 108, 0.8);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-top: 20px;
}

/* ===== Icons ===== */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-xl {
  width: 1.75rem;
  height: 1.75rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--leaf-600);
  color: var(--white) !important;
  padding: 0.875rem 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--leaf-700);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--plum-800);
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--plum-200);
}

.btn-outline:hover {
  border-color: var(--plum-400);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--plum-800);
  color: var(--white);
  padding: 0.75rem 1.5rem;
}

.btn-dark:hover {
  background: var(--plum-900);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--plum-100);
}

.header-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  height: 20px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--plum-800);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--plum-500);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--plum-800);
  cursor: pointer;
  padding: 0;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  border-top: 1px solid var(--plum-100);
  padding: 24px;
}

.nav-mobile.open {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--plum-800);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 128px;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.blob-plum {
  top: -96px;
  right: -96px;
  width: 384px;
  height: 384px;
  background: var(--plum-100);
  opacity: 0.7;
}

.blob-leaf {
  top: 33%;
  left: -128px;
  width: 320px;
  height: 320px;
  background: var(--leaf-100);
  opacity: 0.7;
}

.blob-blush {
  bottom: 0;
  right: 25%;
  width: 256px;
  height: 256px;
  background: var(--blush-100);
  opacity: 0.6;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--plum-50);
  color: var(--plum-700);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.hero-text .display-title {
  font-size: 3rem;
  margin-bottom: 24px;
}

.hero-desc {
  color: rgba(76, 44, 108, 0.8);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 40px;
  max-width: 512px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-image {
  position: relative;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  max-width: 384px;
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 25, 64, 0.3), transparent);
}

.rating-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  display: none;
}

.rating-number {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--plum-800);
}

.rating-label {
  font-size: 0.75rem;
  color: var(--plum-500);
  letter-spacing: 0.05em;
}

/* ===== About ===== */
.about {
  padding: 80px 0;
  background: rgba(246, 243, 251, 0.4);
}

.about-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.about-image {
  position: relative;
  order: 2;
}

.about-img-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  aspect-ratio: 5 / 4;
  background: var(--plum-100);
}

.about-img-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-img-deco {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 112px;
  height: 112px;
  background: var(--leaf-100);
  border-radius: 50%;
  z-index: -1;
}

.about-text {
  order: 1;
}

.about-text .display-title {
  font-size: 2.5rem;
  margin-top: 12px;
  margin-bottom: 24px;
}

.about-desc {
  color: rgba(76, 44, 108, 0.8);
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 40px;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  display: flex;
  gap: 16px;
}

.highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blush-400);
  margin-top: 10px;
  flex-shrink: 0;
}

.highlight h3 {
  font-weight: 500;
  color: var(--plum-900);
  margin-bottom: 4px;
}

.highlight p {
  color: rgba(76, 44, 108, 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ===== Services ===== */
.services {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--plum-100);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--plum-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.service-icon .icon {
  color: var(--plum-600);
  transition: color 0.3s;
}

.service-card:hover .service-icon {
  background: var(--leaf-50);
}

.service-card:hover .service-icon .icon {
  color: var(--leaf-600);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum-900);
  margin-bottom: 8px;
}

.service-card p {
  color: rgba(76, 44, 108, 0.7);
  font-size: 0.875rem;
  line-height: 1.625;
}

/* ===== Reviews ===== */
.reviews {
  position: relative;
  padding: 80px 0;
  background: rgba(246, 243, 251, 0.4);
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 288px;
  height: 288px;
  background: var(--leaf-100);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.reviews .container {
  position: relative;
}

.reviews-grid {
  display: grid;
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  color: var(--plum-200);
  margin-bottom: 16px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--blush-400);
}

.review-text {
  color: var(--plum-800);
  line-height: 1.625;
  margin-bottom: 24px;
  flex: 1;
}

.review-name {
  font-weight: 500;
  color: var(--plum-900);
}

/* ===== Location ===== */
.location {
  padding: 80px 0;
}

.location-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.location-text .display-title {
  font-size: 2.5rem;
  margin-top: 12px;
  margin-bottom: 24px;
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.location-address .icon {
  color: var(--plum-500);
  margin-top: 4px;
}

.location-address p {
  color: rgba(76, 44, 108, 0.8);
  font-size: 1.125rem;
  line-height: 1.625;
}

.location-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.location-map {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  aspect-ratio: 5 / 4;
  border: 1px solid var(--plum-100);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--plum-100);
  background: rgba(246, 243, 251, 0.4);
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding: 48px 24px;
  align-items: start;
}

.footer-logo {
  height: 16px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(76, 44, 108, 0.7);
  line-height: 1.625;
  max-width: 320px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--plum-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum-700);
  transition: background 0.2s;
}

.social-link:hover {
  background: var(--plum-200);
}

.footer-col h3 {
  font-weight: 500;
  color: var(--plum-900);
  margin-bottom: 16px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(76, 44, 108, 0.8);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--leaf-600);
}

.footer-address {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(76, 44, 108, 0.8);
  transition: color 0.2s;
}

.footer-address:hover {
  color: var(--leaf-600);
}

.footer-address .icon {
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--plum-100);
  padding: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--plum-500);
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--leaf-600);
  color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
}

.whatsapp-float:hover {
  background: var(--leaf-700);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .rating-badge {
    display: block;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 160px;
    padding-bottom: 112px;
  }

  .hero-text .display-title {
    font-size: 3.75rem;
  }

  .section-header .display-title,
  .about-text .display-title,
  .location-text .display-title {
    font-size: 3rem;
  }

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

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text .display-title {
    font-size: 4.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-image {
    order: 1;
  }

  .about-text {
    order: 2;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}
