/* ===== 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;
  color: #2D1B30;
  background: #FFFAF5;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
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; }
.skip-link { position: absolute; top: -100%; left: 16px; background: #6B2F5B; color: #fff; padding: 8px 16px; border-radius: 8px; z-index: 9999; font-weight: 700; }
.skip-link:focus { top: 16px; }

/* ===== COLOR VARIABLES ===== */
:root {
  --plum: #6B2F5B;
  --plum-dark: #4E1F42;
  --plum-light: #8B4572;
  --amber: #F5A623;
  --amber-light: #FFD07B;
  --amber-dark: #D4891A;
  --cream: #FFFAF5;
  --warm-gray: #F5EDE8;
  --text: #2D1B30;
  --text-light: #6B5568;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(107, 47, 91, 0.08);
  --shadow-md: 0 8px 30px rgba(107, 47, 91, 0.12);
  --shadow-lg: 0 16px 50px rgba(107, 47, 91, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107, 47, 91, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--plum);
}
.logo .dot { color: var(--amber); font-size: 1.8rem; line-height: 1; }
.logo-icon { color: var(--plum); }
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}
.nav-menu a:hover { background: rgba(107, 47, 91, 0.08); color: var(--plum); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--plum); color: var(--white); border-color: var(--plum); }
.btn-primary:hover { background: var(--plum-dark); border-color: var(--plum-dark); }
.btn-ghost { background: rgba(255,255,255,0.2); color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.35); }
.btn-outline { background: transparent; color: var(--plum); border-color: var(--plum); }
.btn-outline:hover { background: var(--plum); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #4E1F42 0%, #6B2F5B 30%, #8B4572 60%, #A8558F 85%, #F5A623 100%);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 { width: 600px; height: 600px; background: var(--amber); top: -200px; right: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: #C46B9A; bottom: -100px; left: -50px; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: var(--amber-light); top: 40%; left: 30%; animation-delay: -5s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-right: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--amber-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--amber); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-image {
  position: relative;
  flex-shrink: 0;
  width: 480px;
  max-height: 680px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.card-float {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--plum);
  animation: float 4s ease-in-out infinite;
}
.card-float svg { color: #4CAF50; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  color: var(--cream);
  line-height: 0;
}

/* ===== SECTION COMMON ===== */
.section-header { margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(107,47,91,0.1), rgba(245,166,35,0.1));
  color: var(--plum);
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc { font-size: 1.1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.text-center { text-align: center; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,47,91,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(107,47,91,0.1), rgba(245,166,35,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: var(--warm-gray); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image-wrap { position: relative; }
.why-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.wf-number { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; font-weight: 700; }
.wf-label { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; margin-top: 4px; }
.why-content .section-tag { margin-bottom: 16px; }
.why-intro { font-size: 1.05rem; color: var(--text-light); margin-bottom: 32px; line-height: 1.7; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 2px;
}
.why-list strong { display: block; color: var(--text); font-size: 1rem; margin-bottom: 2px; }
.why-list span { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 5/3.8;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78,31,66,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ===== REVIEWS ===== */
.reviews { padding: 100px 0; background: var(--warm-gray); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107,47,91,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 4px; margin-bottom: 20px; color: var(--amber); }
.review-text { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--plum-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 800; color: var(--text); font-size: 0.95rem; }
.review-location { font-size: 0.8rem; color: var(--text-light); }

/* ===== CTA ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 50%, var(--plum-light) 100%);
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.cta-orb-1 { width: 400px; height: 400px; background: var(--amber); opacity: 0.2; top: -100px; right: -50px; }
.cta-orb-2 { width: 300px; height: 300px; background: #C46B9A; opacity: 0.25; bottom: -80px; left: -50px; }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 700px; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.cta-text { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-intro { font-size: 1.05rem; color: var(--text-light); margin-bottom: 36px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(107,47,91,0.1), rgba(245,166,35,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  flex-shrink: 0;
}
.contact-details strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 4px; }
.contact-details a { color: var(--plum); font-weight: 700; transition: color 0.2s; }
.contact-details a:hover { color: var(--amber-dark); }
.contact-details span { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(107,47,91,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(107,47,91,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum);
  box-shadow: 0 0 0 4px rgba(107,47,91,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { color: #4CAF50; margin-bottom: 16px; }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text); margin-bottom: 8px; }
.form-success p { color: var(--text-light); }

/* ===== FOOTER ===== */
.site-footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--amber); }
.footer-contact li:last-child { color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { flex-direction: column; padding-top: 100px; }
  .hero-content { padding-right: 0; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { width: 100%; max-width: 500px; margin-top: 40px; max-height: 500px; }
  .hero-image-float { left: 20px; bottom: 20px; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-image-wrap { order: -1; }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(255,250,245,0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid rgba(107,47,91,0.1);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu ul { flex-direction: column; gap: 4px; }
  .nav-menu a { display: block; padding: 12px 16px; text-align: center; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-image { width: 100%; max-height: 400px; }
  .contact-form-wrap { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
}
