:root {
  --primary-pink: #e91e63;
  --soft-pink: #fce4ec;
  --rose-gold: #cfa15a;
  --lavender: #b388eb;
  --dark: #1e1e1e;
  --light-bg: #fff8fb;
  --white: #ffffff;
  --text-muted: #6f6472;
  --shadow: 0 20px 45px rgba(30, 30, 30, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  background: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 999px;
}

/* Loading */
.loading-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--soft-pink), #fff);
  display: grid;
  place-items: center;
  z-index: 2000;
  transition: opacity 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(233, 30, 99, 0.2);
  border-top-color: var(--primary-pink);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 251, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(233, 30, 99, 0.08);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--dark);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-pink);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--dark);
  transition: transform var(--transition);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 0;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.2);
}

.btn-secondary {
  color: var(--primary-pink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 0 1px rgba(233, 30, 99, 0.12);
}

.btn-nav {
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(30, 30, 30, 0.82) 0%, rgba(233, 30, 99, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  padding: 5rem 0 4rem;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose-gold);
  margin-bottom: 0.9rem;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.booking-copy h2,
.faq-copy h2,
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-copy p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  color: var(--white);
}

.stat-card strong {
  display: block;
  font-size: 1.15rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  animation: float 4.5s ease-in-out infinite;
}

.card-one { top: 8%; right: 8%; animation-delay: 0s; }
.card-two { bottom: 15%; left: 5%; animation-delay: 1.2s; }
.card-three { bottom: 5%; right: 10%; animation-delay: 2.4s; }

.floating-card span {
  font-size: 1.25rem;
}

.floating-card h3 {
  font-size: 0.95rem;
}

.floating-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-light {
  background: var(--light-bg);
}

.section-gradient {
  background: linear-gradient(135deg, rgba(252, 228, 236, 0.65) 0%, rgba(179, 136, 235, 0.2) 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.booking-copy h2,
.faq-copy h2,
.contact-info h2 {
  color: var(--dark);
}

.section-heading p:last-child,
.about-copy p,
.booking-copy p,
.faq-copy p,
.contact-info p {
  color: var(--text-muted);
  line-height: 1.8;
}

.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid,
.team-grid,
.pricing-grid,
.offers-grid,
.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.team-card,
.pricing-card,
.offer-card,
.product-card,
.info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.team-card:hover,
.pricing-card:hover,
.offer-card:hover,
.product-card:hover,
.info-card:hover,
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(30, 30, 30, 0.15);
}

.service-card img,
.offer-card img,
.product-card img {
  height: 220px;
  object-fit: cover;
}

.service-content,
.team-content,
.pricing-card,
.offer-card,
.product-card {
  padding: 1.25rem;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-pink), rgba(179, 136, 235, 0.25));
  margin-bottom: 1rem;
}

.service-card h3,
.team-card h3,
.pricing-card h3,
.offer-card h3,
.product-card h3,
.info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.service-card p,
.team-card p,
.pricing-card li,
.offer-card p,
.product-card p,
.info-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  font-weight: 600;
}

.service-footer a {
  color: var(--primary-pink);
}

/* About */
.about-grid,
.booking-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-media img,
.booking-copy {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 1.3rem 0 1.8rem;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--dark);
}

.feature-list li::before {
  content: '✦';
  color: var(--primary-pink);
  position: absolute;
  left: 0;
}

/* Why Choose Us */
.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: 1.55rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(233, 30, 99, 0.08);
}

/* Gallery */
.masonry-gallery {
  columns: 3 280px;
  column-gap: 1rem;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.tall { break-inside: avoid; }
.gallery-item.wide { break-inside: avoid; }

/* Team */
.team-card {
  padding: 0;
}

.team-card img {
  height: 260px;
  object-fit: cover;
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.team-content span {
  color: var(--rose-gold);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 0.7rem;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(252, 228, 236, 0.7);
}

/* Pricing */
.pricing-card {
  border: 1px solid rgba(233, 30, 99, 0.08);
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.4rem;
}

/* Booking */
.booking-section {
  background: linear-gradient(135deg, rgba(252,228,236,0.65) 0%, rgba(255,255,255,0.9) 100%);
}

.booking-copy {
  padding: 2rem;
  background: var(--white);
}

.booking-highlights {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.booking-highlights div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--light-bg);
  border-radius: 14px;
}

.booking-form,
.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(30,30,30,0.1);
  border-radius: 14px;
  background: var(--white);
  color: var(--dark);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.12);
}

.form-error {
  min-height: 1.2rem;
  color: #c62828;
  font-size: 0.9rem;
}

/* Offers */
.offer-card {
  position: relative;
}

.offer-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.45rem 0.8rem;
  background: rgba(255,255,255,0.92);
  color: var(--primary-pink);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, rgba(179,136,235,0.16) 0%, rgba(252,228,236,0.55) 100%);
}

.testimonial-slider {
  position: relative;
  min-height: 320px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.stars {
  color: var(--rose-gold);
  letter-spacing: 0.2rem;
  margin-bottom: 0.7rem;
}

/* Products */
.product-card {
  padding: 0;
}

.product-card h3,
.product-card p,
.product-card a {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.product-card p {
  margin-bottom: 1rem;
}

.product-card a {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

/* FAQ */
.faq-section {
  background: linear-gradient(135deg, rgba(255,248,251,0.9), rgba(252,228,236,0.9));
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  display: block;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem 1.2rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding-top: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Instagram */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.instagram-grid a {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.instagram-grid img {
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

.instagram-grid a:hover img {
  transform: scale(1.06);
}

/* Contact */
.contact-section {
  background: var(--light-bg);
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(30,30,30,0.08);
}

.map-placeholder {
  margin-top: 1.2rem;
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(233,30,99,0.14), rgba(179,136,235,0.2));
  color: var(--dark);
}

/* Newsletter */
.newsletter-section {
  padding: 0 0 5rem;
}

.newsletter-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
  box-shadow: var(--shadow);
}

.newsletter-form {
  display: flex;
  gap: 0.8rem;
  flex: 1;
}

.newsletter-form input {
  border: 0;
  min-width: 220px;
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-pink), var(--rose-gold));
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 1200;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: all 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .services-grid,
  .team-grid,
  .pricing-grid,
  .offers-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-content,
  .about-grid,
  .booking-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .services-grid,
  .team-grid,
  .pricing-grid,
  .offers-grid,
  .product-grid,
  .why-grid,
  .instagram-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 3.5rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .newsletter-card,
  .booking-form,
  .contact-form,
  .booking-copy {
    padding: 1.25rem;
  }
}
