*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum-50: #F9F5FC;
  --plum-100: #F3EAF7;
  --plum-200: #E9D4EE;
  --plum-400: #C07FC0;
  --plum-500: #5B2C6F;
  --plum-600: #4A2459;
  --plum-700: #391C44;
  --plum-800: #28142F;
  --plum-900: #170D19;
  --amber-400: #F59E0B;
  --amber-500: #D97706;
  --amber-600: #B45309;
  --neutral-50: #FAFAFA;
  --neutral-100: #F5F5F5;
  --neutral-200: #E5E5E5;
  --neutral-300: #D4D4D4;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(91,44,111,0.08);
  --shadow-md: 0 4px 20px rgba(91,44,111,0.1);
  --shadow-lg: 0 12px 40px rgba(91,44,111,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--neutral-800);
  background: var(--neutral-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(91,44,111,0.08);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 1.2rem;
  color: var(--plum-500);
  text-decoration: none;
}
.nav-logo-icon { color: var(--plum-500); }
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  text-decoration: none; color: var(--neutral-700);
  font-size: 0.9rem; font-weight: 500;
  position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--amber-400);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--plum-500); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--plum-500); color: #fff;
  padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--plum-600); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--plum-500); border-radius: 2px;
  position: absolute; left: 0;
  transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* HERO */
.hero {
  padding: 140px 0 120px;
  background: linear-gradient(160deg, var(--plum-50) 0%, #fff 50%, var(--plum-50) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,44,111,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,44,111,0.08); color: var(--plum-500);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700; line-height: 1.15;
  color: var(--plum-900); margin-bottom: 20px;
}
.hero-headline .accent { color: var(--amber-500); }
.hero-sub {
  font-size: 1.1rem; color: var(--neutral-600);
  line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--plum-500); color: #fff;
  box-shadow: 0 4px 14px rgba(91,44,111,0.3);
}
.btn-primary:hover { background: var(--plum-600); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(91,44,111,0.35); }
.btn-outline {
  background: transparent; color: var(--plum-500);
  border: 2px solid var(--plum-200);
}
.btn-outline:hover { border-color: var(--plum-500); background: rgba(91,44,111,0.04); }
.btn-accent {
  background: var(--amber-400); color: var(--plum-900);
  box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.btn-accent:hover { background: var(--amber-500); transform: translateY(-2px); }
.btn-white-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* HERO CARD */
.hero-card-main {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-card-img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-lg);
}
.hero-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px; background: linear-gradient(transparent, rgba(23,13,25,0.8));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.hero-card-label {
  color: #fff; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 500;
}

/* STAT CARDS */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: -60px;
  position: relative; z-index: 10;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(91,44,111,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  background: var(--plum-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--plum-500);
}
.stat-label {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--neutral-600); margin-bottom: 6px;
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--plum-500);
}

/* SECTIONS */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--amber-500); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--plum-900);
  line-height: 1.2; margin-bottom: 16px;
}
.section-desc { font-size: 1.05rem; color: var(--neutral-600); line-height: 1.7; }

/* SERVICES */
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--neutral-50);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--plum-200);
}
.service-img-wrap { overflow: hidden; }
.service-img-wrap img {
  display: block; width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-body { padding: 24px; }
.service-icon {
  width: 44px; height: 44px; margin-bottom: 14px;
  background: var(--plum-500); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--plum-900); margin-bottom: 8px;
}
.service-desc { font-size: 0.9rem; color: var(--neutral-600); line-height: 1.6; margin-bottom: 16px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--plum-500); text-decoration: none;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; color: var(--amber-500); }

/* ABOUT */
.about { background: var(--plum-50); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { display: block; width: 100%; height: auto; }
.about-img-float {
  position: absolute; bottom: -40px; right: -30px;
  width: 200px; border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}
.about-img-float img { display: block; width: 100%; height: auto; }
.about-accent-box {
  position: absolute; top: -20px; left: -20px;
  background: var(--plum-500); color: #fff;
  padding: 20px 24px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.about-accent-box-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.about-accent-box-text {
  font-size: 0.82rem; font-weight: 500; opacity: 0.85;
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }
.about-text {
  font-size: 1rem; color: var(--neutral-600);
  line-height: 1.75; margin-bottom: 16px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px;
}
.about-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 500; color: var(--neutral-700);
}
.about-feature svg { color: var(--amber-400); flex-shrink: 0; }

/* GALLERY */
.gallery { background: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 4; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 4 / 8; grid-row: 2 / 3; }
.gallery-item:nth-child(6) { grid-column: 8 / 13; grid-row: 2 / 3; }

/* TESTIMONIALS */
.testimonials { background: var(--plum-900); color: #fff; }
.testimonials .section-tag { color: var(--amber-400); }
.testimonials .section-title { color: #fff; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: background var(--transition), transform var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testimonial-quote { color: var(--amber-400); margin-bottom: 20px; opacity: 0.8; }
.testimonial-text {
  font-size: 0.95rem; line-height: 1.75;
  color: rgba(255,255,255,0.85); margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--plum-500); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: #fff; }
.testimonial-location { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--plum-600) 0%, var(--plum-800) 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: #fff; margin-bottom: 8px;
}
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.75); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* CONTACT */
.contact { background: var(--neutral-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: 16px; }
.contact-desc { font-size: 1rem; color: var(--neutral-600); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--plum-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--plum-500);
}
.contact-item-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--neutral-600); margin-bottom: 2px;
}
.contact-item div:last-child { font-size: 0.95rem; color: var(--neutral-800); line-height: 1.6; }
.contact-item a { color: var(--plum-500); text-decoration: none; }
.contact-item a:hover { color: var(--amber-500); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; }

/* FORM */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-200);
}
.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--plum-900); margin-bottom: 8px;
}
.contact-form-desc { font-size: 0.9rem; color: var(--neutral-600); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--neutral-700); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--neutral-800); background: var(--neutral-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--plum-400);
  box-shadow: 0 0 0 3px rgba(91,44,111,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center; padding: 40px 20px;
  color: var(--plum-500);
}
.form-success svg { margin-bottom: 16px; }
.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--plum-900); margin-bottom: 8px;
}
.form-success p { color: var(--neutral-600); font-size: 0.95rem; }

/* FOOTER */
.footer {
  background: var(--plum-900); color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600; font-size: 1.2rem;
  color: #fff; text-decoration: none; margin-bottom: 14px;
}
.footer-logo svg { color: var(--amber-400); }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--amber-400); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 0.9rem; transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 0.9rem; line-height: 1.8; }
.footer-col a[href^="tel"] { color: var(--amber-400); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* MOBILE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 480px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 24px;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 12px 0; font-size: 1rem; }
  .hero { padding: 110px 0 100px; }
  .hero-grid { gap: 32px; }
  .stat-cards { margin-top: -40px; gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .stat-value { font-size: 1.3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .gallery-item img { height: 180px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .about-img-float { width: 150px; right: -10px; bottom: -30px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ANIMATIONS */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
