/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #2D1F35;
  background: #FFFBF5;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px 28px;
  white-space: nowrap;
}
.btn-primary {
  background: #7B2D8E;
  color: #fff;
  border-color: #7B2D8E;
}
.btn-primary:hover { background: #632472; border-color: #632472; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,142,0.3); }
.btn-amber {
  background: #F5A623;
  color: #2D1F35;
  border-color: #F5A623;
}
.btn-amber:hover { background: #D4880A; border-color: #D4880A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-outline {
  background: transparent;
  color: #7B2D8E;
  border-color: #7B2D8E;
}
.btn-outline:hover { background: #7B2D8E; color: #fff; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: #fff; color: #7B2D8E; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; padding: 16px; }

/* ── Section Tags ── */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5A623;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #2D1F35;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #5A4660;
  max-width: 600px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,251,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,45,142,0.08);
  transition: box-shadow 0.3s ease;
  padding: 12px 0;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(123,45,142,0.1); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #7B2D8E;
}
.logo-light { color: #E8C5EF; }
.logo-light span { color: #fff; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.92rem;
  color: #2D1F35;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.nav-links a:hover { color: #7B2D8E; background: rgba(123,45,142,0.06); }
.nav-links .btn-primary { color: #fff; }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #7B2D8E;
}
.mobile-menu-btn svg { display: block; }

/* ── Hero ── */
.hero {
  padding: 120px 0 64px;
  background: linear-gradient(135deg, #F9F0FC 0%, #FFFBF5 50%, #FFF4D6 100%);
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(123,45,142,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245,166,35,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 60px rgba(123,45,142,0.08);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #7B2D8E;
  background: rgba(123,45,142,0.08);
  border: 1px solid rgba(123,45,142,0.15);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #2D1F35;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title .accent { color: #7B2D8E; }
.hero-subtitle {
  font-size: 1.1rem;
  color: #5A4660;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(123,45,142,0.15);
  aspect-ratio: 520/420;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.stat-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 8px 30px rgba(123,45,142,0.06);
  transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-icon { margin-bottom: 10px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #7B2D8E;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.82rem;
  color: #5A4660;
  margin-top: 6px;
  line-height: 1.4;
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #FFFBF5;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(123,45,142,0.07);
  box-shadow: 0 4px 20px rgba(123,45,142,0.04);
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(123,45,142,0.1);
  border-color: rgba(123,45,142,0.15);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #F9F0FC, #F3E0F7);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2D1F35;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: #5A4660;
  line-height: 1.7;
}

/* ── About ── */
.about {
  padding: 100px 0;
  background: linear-gradient(180deg, #F9F0FC 0%, #FFFBF5 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123,45,142,0.12);
  aspect-ratio: 520/480;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123,45,142,0.15);
  border: 4px solid #fff;
  aspect-ratio: 300/240;
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p {
  font-size: 1rem;
  color: #5A4660;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.about-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2D1F35;
}
.about-feature svg { flex-shrink: 0; }

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: #7B2D8E;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 90%, rgba(245,166,35,0.15) 0%, transparent 50%),
              radial-gradient(circle at 90% 10%, rgba(232,197,239,0.2) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials .section-tag {
  background: rgba(245,166,35,0.2);
  border-color: rgba(245,166,35,0.35);
  color: #FFDC7D;
}
.testimonials .section-title { color: #fff; }
.testimonials .section-subtitle { color: rgba(232,197,239,0.85); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.3s ease, background 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: #F5A623;
  margin-bottom: -8px;
}
.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar { flex-shrink: 0; }
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.testimonial-location {
  font-size: 0.82rem;
  color: rgba(232,197,239,0.7);
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #F5A623 0%, #D4880A 100%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-content { flex: 1; min-width: 280px; }
.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #2D1F35;
  margin-bottom: 12px;
}
.cta-text {
  font-size: 1.05rem;
  color: rgba(45,31,53,0.75);
  line-height: 1.7;
  max-width: 500px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: #FFFBF5;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-intro {
  font-size: 1.05rem;
  color: #5A4660;
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #F9F0FC, #F3E0F7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7B2D8E;
  margin-bottom: 4px;
}
.contact-detail span, .contact-detail a {
  font-size: 0.95rem;
  color: #2D1F35;
  line-height: 1.6;
}
.contact-detail a:hover { color: #7B2D8E; text-decoration: underline; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 12px 48px rgba(123,45,142,0.08);
  border: 1px solid rgba(123,45,142,0.07);
}
.contact-form h3 {
  font-size: 1.4rem;
  color: #2D1F35;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2D1F35;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(123,45,142,0.15);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #2D1F35;
  background: #FFFBF5;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D8E;
  box-shadow: 0 0 0 3px rgba(123,45,142,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A890B0; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: #F9F0FC;
  border: 1px solid rgba(123,45,142,0.15);
  border-radius: 12px;
  font-size: 0.92rem;
  color: #632472;
}

/* ── Footer ── */
.footer {
  background: #240B2C;
  padding: 64px 0 0;
  color: rgba(232,197,239,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8C5EF;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(232,197,239,0.6);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #FFDC7D; }
.footer-bottom {
  border-top: 1px solid rgba(232,197,239,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(232,197,239,0.4);
}

/* ── Scroll Reveal (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-card { grid-template-columns: 1fr; padding: 36px; }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,251,245,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(123,45,142,0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .hero { padding: 100px 0 48px; }
  .hero-card { padding: 24px; gap: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 18px 14px; }
  .stat-number { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-float { right: 0; bottom: -20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-card { border-radius: 20px; }
  .hero-stats { gap: 10px; }
  .about-features { grid-template-columns: 1fr; }
}
