/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3D2B3D;
  background: #FFFAF7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: #4A1F5C; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: #6B5068; }

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B2D8B;
  background: linear-gradient(135deg, #F3D5F5 0%, #FDE8D0 100%);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #7B2D8B 0%, #9B4DCA 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123, 45, 139, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 45, 139, 0.45);
}
.btn-amber {
  background: linear-gradient(135deg, #D4A03C 0%, #E8B84B 100%);
  color: #3D2B3D;
  box-shadow: 0 4px 20px rgba(212, 160, 60, 0.35);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 60, 0.45);
}
.btn-outline {
  background: transparent;
  color: #7B2D8B;
  border: 2px solid #7B2D8B;
}
.btn-outline:hover {
  background: #7B2D8B;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: #fff;
  color: #7B2D8B;
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; padding: 14px 24px; font-size: 1.05rem; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 45, 139, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(123, 45, 139, 0.1); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #4A1F5C;
}
.logo-icon { color: #7B2D8B; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a:not(.btn) {
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5A3D5A;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.nav-links a:not(.btn):hover { background: rgba(123, 45, 139, 0.08); color: #7B2D8B; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  background: #7B2D8B;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  padding: 120px 0 0;
  background: linear-gradient(160deg, #FFFAF7 0%, #FDF0FF 50%, #FFF5E6 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 45, 139, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 160, 60, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D4A03C;
  margin-bottom: 16px;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-content h1 em { font-style: italic; color: #7B2D8B; }
.hero-desc { font-size: 1.1rem; color: #6B5068; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(123, 45, 139, 0.1);
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #4A1F5C; }
.stat span { font-size: 0.82rem; color: #8B6B85; }
.stat-divider { width: 1px; height: 40px; background: rgba(123, 45, 139, 0.15); }
.hero-image { position: relative; }
.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 45, 139, 0.15);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(123, 45, 139, 0.12);
  font-weight: 600;
  color: #4A1F5C;
  font-size: 0.9rem;
}
.hero-float-card svg { color: #D4A03C; }
.hero-wave { margin-top: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== SERVICES ===== */
.services {
  padding: 80px 0 100px;
  background: #FFFAF7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(123, 45, 139, 0.06);
  border: 1px solid rgba(123, 45, 139, 0.06);
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(123, 45, 139, 0.12);
  border-color: rgba(123, 45, 139, 0.12);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F3D5F5 0%, #FDE8D0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2D8B;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; color: #4A1F5C; }
.service-card p { font-size: 0.95rem; line-height: 1.65; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: linear-gradient(160deg, #FFF5E6 0%, #FFFAF7 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123, 45, 139, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(123, 45, 139, 0.15);
  border: 4px solid #fff;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  background: linear-gradient(135deg, #7B2D8B 0%, #9B4DCA 100%);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(123, 45, 139, 0.3);
}
.about-badge strong { font-family: 'Playfair Display', serif; font-size: 1rem; }
.about-badge span { font-size: 0.78rem; opacity: 0.85; }
.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 16px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-weight: 600; color: #4A1F5C; font-size: 0.95rem; }

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: #FFFAF7;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(123, 45, 139, 0.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-row: span 2; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 31, 92, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ===== REVIEWS ===== */
.reviews {
  padding: 100px 0;
  background: linear-gradient(160deg, #FDF0FF 0%, #FFF5E6 100%);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(123, 45, 139, 0.06);
  border: 1px solid rgba(123, 45, 139, 0.06);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123, 45, 139, 0.1);
}
.review-quote { margin-bottom: 16px; }
.review-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5A3D5A;
  flex: 1;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar { border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.review-avatar img { width: 40px; height: 40px; object-fit: cover; }
.review-author strong { display: block; font-size: 0.92rem; color: #4A1F5C; }
.review-author span { font-size: 0.82rem; color: #8B6B85; }

/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #4A1F5C 0%, #7B2D8B 50%, #9B4DCA 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(212, 160, 60, 0.1);
  border-radius: 50%;
}
.cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(155, 77, 202, 0.2);
  border-radius: 50%;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-tag {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8B84B;
  margin-bottom: 16px;
}
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #FFFAF7;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-desc { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F3D5F5 0%, #FDE8D0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2D8B;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.92rem; color: #4A1F5C; margin-bottom: 2px; }
.contact-item span, .contact-item a { font-size: 0.92rem; color: #6B5068; }
.contact-item a:hover { color: #7B2D8B; text-decoration: underline; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(123, 45, 139, 0.08); }

.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(123, 45, 139, 0.08);
  border: 1px solid rgba(123, 45, 139, 0.06);
}
.contact-form-wrap h3 { margin-bottom: 24px; color: #4A1F5C; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #5A3D5A;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(123, 45, 139, 0.12);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #3D2B3D;
  background: #FFFAF7;
  transition: all 0.25s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D8B;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(123, 45, 139, 0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B89AAF; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h4 { font-size: 1.3rem; color: #4A1F5C; margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; color: #6B5068; }

/* ===== FOOTER ===== */
.footer {
  background: #2D1535;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-links strong,
.footer-hours strong,
.footer-contact strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: #E8B84B; }
.footer-hours, .footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-hours span, .footer-contact span, .footer-contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact a:hover { color: #E8B84B; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 247, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(123, 45, 139, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s ease;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a:not(.btn) { padding: 12px 16px; width: 100%; text-align: center; }
  .nav-links .btn { width: 100%; justify-content: center; margin-top: 8px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-float-card { left: 10px; bottom: -10px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-secondary { right: 10px; bottom: -20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1), .gallery-item:nth-child(4) { grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 0 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
