:root {
  --coral: #ff6b6b;
  --pink: #ff1493;
  --purple: #9b59b6;
  --cream: #fafaf8;
  --charcoal: #2c3e50;
  --gold: #d4af37;
  --white: #ffffff;
  --shadow: 0 6px 18px rgba(44, 62, 80, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", "Verdana", sans-serif;
  color: var(--charcoal);
  background: linear-gradient(165deg, #fff8f9 0%, #fffaf5 38%, #faf8ff 100%);
  text-rendering: optimizeSpeed;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background: rgba(250, 250, 248, 0.92);
  border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.brand {
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #7d8894;
}

.top-nav {
  display: flex;
  gap: 0.8rem;
}

.top-nav a {
  padding: 0.5rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(44, 62, 80, 0.2);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--charcoal);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  width: min(1150px, 92%);
  margin: 0 auto;
  padding: 4.2rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

h1, h2, h3 {
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  margin: 0 0 0.7rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.kicker {
  color: var(--pink);
  font-weight: 700;
}

.motto {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--purple);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.08rem;
  max-width: 54ch;
}

.hero-art {
  min-height: 320px;
  position: relative;
}

.blob {
  position: absolute;
  border-radius: 999px;
}

.blob-1 {
  inset: 14% 10% auto auto;
  width: 230px;
  height: 230px;
  background: linear-gradient(45deg, var(--coral), #ff9f80);
}

.blob-2 {
  inset: 40% auto auto 18%;
  width: 220px;
  height: 220px;
  background: linear-gradient(45deg, var(--purple), #b19cd9);
}

.blob-3 {
  inset: auto 24% 2% auto;
  width: 160px;
  height: 160px;
  background: linear-gradient(45deg, var(--pink), #ff69b4);
}

.cta-row, .cta-col {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: linear-gradient(120deg, var(--coral), var(--pink));
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
  border-color: rgba(44, 62, 80, 0.2);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 62, 80, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.price {
  margin-top: 0.8rem;
  font-weight: 700;
  color: #445464;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 0.67rem);
  gap: 1rem;
  transition: transform 260ms ease;
  will-change: transform;
}

.review-card {
  background: #fff;
  border: 1px solid rgba(44, 62, 80, 0.1);
  border-radius: 16px;
  padding: 1rem;
  min-height: 210px;
  box-shadow: var(--shadow);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(145deg, var(--pink), var(--purple));
  margin-bottom: 0.6rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 1.5px;
}

.carousel-btn {
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 1.3rem;
  cursor: pointer;
}

.offers {
  background: linear-gradient(120deg, #ff7096, #b56ef8, #ff8e70);
  border-radius: 28px;
  color: var(--white);
  padding-left: 4%;
  padding-right: 4%;
}

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

.offer-card {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 16px;
  padding: 1rem;
}

.offer-card a {
  display: inline-block;
  margin-top: 0.7rem;
  background: var(--white);
  color: #932a58;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
}

.badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.2);
  border: 1px dashed rgba(255, 255, 255, 0.85);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-item {
  border-radius: 16px;
  height: 200px;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(44, 62, 80, 0.08);
  background: linear-gradient(125deg, #ffe4e1, #f2e4ff, #ffe9d6);
  position: relative;
  transition: transform 180ms ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.78), rgba(44, 62, 80, 0));
  color: #fff;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1rem;
}

.map-wrap {
  border: 1px solid rgba(44, 62, 80, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.map-wrap iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
}

.contact-card {
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
  border: 1px solid rgba(44, 62, 80, 0.1);
  box-shadow: var(--shadow);
}

.footer {
  text-align: center;
  background: linear-gradient(180deg, #2d1b3b, #2c3e50);
  color: #eff4f9;
  width: 100%;
  padding-left: 4%;
  padding-right: 4%;
}

.social {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0.8rem 0 1.2rem;
}

.social a {
  border: 1px solid rgba(239, 244, 249, 0.45);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  transition: transform 160ms ease, background-color 160ms ease;
}

.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease-out, transform 560ms ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 90ms;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover, .social a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }

  .card:hover, .review-card:hover, .gallery-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 14px 32px rgba(44, 62, 80, 0.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .top-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 1rem;
    width: min(280px, calc(100vw - 2rem));
    background: #fff;
    border: 1px solid rgba(44, 62, 80, 0.12);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    gap: 0.15rem;
  }

  .top-nav a {
    padding: 0.7rem 0.6rem;
    border-radius: 8px;
  }

  .top-nav a:hover {
    background: rgba(255, 20, 147, 0.08);
  }

  .top-nav.open {
    display: flex;
  }
}

@media (max-width: 767px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
  }

  .services-grid,
  .offer-grid,
  .gallery-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    grid-auto-columns: 100%;
  }

  .section {
    padding: 3rem 0;
  }
}
