/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a2e;
  background: #faf9f7;
  -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; }

/* ===== COLORS ===== */
:root {
  --plum: #7B2D8B;
  --plum-dark: #5a1f64;
  --plum-deep: #3d1447;
  --amber: #F5A623;
  --amber-light: #ffd166;
  --cream: #faf9f7;
  --warm-gray: #f0ece6;
  --text: #1a1a2e;
  --text-light: #5a5a72;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(123,45,139,0.08);
  --shadow-lg: 0 12px 48px rgba(123,45,139,0.12);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; color: var(--text); }
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--plum); color: var(--white); border-color: var(--plum); }
.btn-primary:hover { background: var(--plum-dark); border-color: var(--plum-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--plum); border-color: var(--white); }
.btn-outline-light { background: transparent; color: var(--plum); border-color: var(--plum); }
.btn-outline-light:hover { background: var(--plum); color: var(--white); }
.btn-full { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-nav { background: var(--amber); color: var(--text); border-color: var(--amber); padding: 10px 24px; font-size: 14px; }
.btn-nav:hover { background: var(--amber-light); border-color: var(--amber-light); transform: translateY(-1px); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(16px);
  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); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 18px; color: var(--text); }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--text-light); transition: color 0.2s; }
.nav-menu a:not(.btn):hover { color: var(--plum); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(61,20,71,0.82) 0%, rgba(123,45,139,0.65) 50%, rgba(245,166,35,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-title br { display: none; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }

/* ===== SERVICES ===== */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(123,45,139,0.12); background: var(--white); }
.service-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(123,45,139,0.08); border-radius: 14px; margin-bottom: 24px; }
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; }

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-images { position: relative; }
.about-images img:first-child { border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg); }
.about-images img:last-child { position: absolute; bottom: -40px; right: -20px; border-radius: var(--radius-lg); border: 6px solid var(--cream); }
.about-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--plum);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.badge-number { display: block; font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 800; line-height: 1; }
.badge-label { font-size: 13px; opacity: 0.85; margin-top: 4px; line-height: 1.4; }
.about-content .section-eyebrow { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-content > p { color: var(--text-light); margin-bottom: 16px; font-size: 16px; }
.about-list { margin: 28px 0 36px; display: grid; gap: 14px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.02); }
.gallery-grid > :nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-grid > :nth-child(2) { grid-column: 5 / 9; }
.gallery-grid > :nth-child(3) { grid-column: 9 / 13; }
.gallery-grid > :nth-child(4) { grid-column: 5 / 9; }
.gallery-grid > :nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }

/* ===== REVIEWS ===== */
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(123,45,139,0.06);
  transition: all 0.3s ease;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.review-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.review-card p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.review-card footer { font-size: 14px; font-weight: 600; color: var(--plum); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-dark) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-title { font-size: clamp(28px, 4vw, 44px); color: var(--white); margin-bottom: 16px; }
.cta-text { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--plum); border-color: var(--white); }

/* ===== CONTACT ===== */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 32px; }
.contact-icon { flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(123,45,139,0.08); border-radius: 14px; }
.contact-item h3 { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--plum); margin-bottom: 6px; }
.contact-item p { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.contact-item a { color: var(--text); font-weight: 600; transition: color 0.2s; }
.contact-item a:hover { color: var(--plum); }
.map-wrap { border-radius: var(--radius); overflow: hidden; margin-top: 12px; }
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h3 { font-size: 24px; margin-bottom: 8px; }
.form-note { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0dcd6;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  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 3px rgba(123,45,139,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h3 { font-size: 24px; margin: 16px 0 8px; color: var(--plum); }
.form-success p { color: var(--text-light); }

/* ===== FOOTER ===== */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; max-width: 300px; }
.footer-links h4, .footer-contact h4 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--amber); margin-bottom: 20px; }
.footer-links ul { display: grid; gap: 12px; }
.footer-links a { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; line-height: 1.8; }
.footer-contact a { color: var(--amber); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom p { font-size: 13px; text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid > :last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
  .gallery-grid { grid-template-rows: repeat(2, 200px); }
  .gallery-grid > :nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
  .gallery-grid > :nth-child(2) { grid-column: 5 / 9; }
  .gallery-grid > :nth-child(3) { grid-column: 9 / 13; }
  .gallery-grid > :nth-child(4) { grid-column: 5 / 9; }
  .gallery-grid > :nth-child(5) { grid-column: 9 / 13; grid-row: 2 / 3; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(250,249,247,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(123,45,139,0.1);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero-title br { display: block; }
  .hero-content { padding: 140px 0 100px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images img:last-child { position: relative; bottom: auto; right: auto; margin-top: 16px; }
  .about-content .section-eyebrow, .about-content .section-title { text-align: center; }
  .about-content > p { text-align: center; }
  .about-list { text-align: left; }
  .about-content .btn { display: inline-flex; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid > :nth-child(1) { grid-column: 1 / -1; grid-row: auto; }
  .gallery-grid > :nth-child(2) { grid-column: 1 / 2; }
  .gallery-grid > :nth-child(3) { grid-column: 2 / 3; }
  .gallery-grid > :nth-child(4) { grid-column: 1 / 2; }
  .gallery-grid > :nth-child(5) { grid-column: 2 / 3; }
  .gallery-grid img { height: 220px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid > :last-child { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .service-card { padding: 28px 24px; }
  .contact-form-wrap { padding: 24px; }
  .review-card { padding: 28px 24px; }
}
