/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #3D2B2B;
  background: #FDF8F5;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; font-weight: 700; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #7B2D3B; margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: #7B2D3B; border-radius: 2px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: #2A1F1F; margin-bottom: 20px; }
.section-title .accent { color: #7B2D3B; font-style: italic; }
.section-sub { font-size: 1.05rem; color: #6B5555; max-width: 560px; }
.lead { font-size: 1.1rem; color: #5A4040; line-height: 1.75; margin-bottom: 16px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 500;
  font-size: 0.95rem; transition: all 0.3s ease;
}
.btn-primary {
  background: #7B2D3B; color: #FDF8F5;
  box-shadow: 0 4px 20px rgba(123,45,59,0.3);
}
.btn-primary:hover { background: #6A2430; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123,45,59,0.35); }
.btn-outline {
  background: transparent; color: #7B2D3B;
  border: 2px solid rgba(123,45,59,0.3);
}
.btn-outline:hover { border-color: #7B2D3B; background: rgba(123,45,59,0.06); }
.btn-ghost {
  background: rgba(255,255,255,0.15); color: #FDF8F5;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,248,245,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123,45,59,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(123,45,59,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 72px; 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.2rem; color: #2A1F1F; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a { font-size: 0.9rem; font-weight: 500; color: #5A4040; transition: color 0.2s; }
.nav-menu a:hover { color: #7B2D3B; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #2A1F1F; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 60px;
  background: linear-gradient(135deg, #FDF8F5 0%, #F9EDE8 50%, #F5E0D8 100%);
  position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; }
.blob-1 { width: 500px; height: 500px; background: #E8B4B8; top: -100px; right: -100px; }
.blob-2 { width: 350px; height: 350px; background: #F5D5C0; bottom: -50px; left: -50px; }
.blob-3 { width: 200px; height: 200px; background: #D4908A; top: 40%; left: 30%; opacity: 0.2; }
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,45,59,0.08); color: #7B2D3B;
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); color: #2A1F1F; margin-bottom: 24px; line-height: 1.1; }
.hero-title .accent { color: #7B2D3B; font-style: italic; }
.hero-sub { font-size: 1.1rem; color: #6B5555; line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 24px; align-items: center; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: #7B2D3B; line-height: 1; }
.stat-label { font-size: 0.78rem; color: #8A6060; margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(123,45,59,0.15); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-img-stack { position: relative; }
.hero-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(123,45,59,0.15); }
.hero-img-main img { width: 100%; height: 600px; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -30px; left: -40px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(123,45,59,0.2);
  border: 4px solid #FDF8F5;
}
.hero-img-accent img { width: 300px; height: 300px; object-fit: cover; }
.hero-card {
  position: absolute; top: 40px; right: -20px;
  background: #7B2D3B; color: #FDF8F5;
  padding: 14px 20px; border-radius: 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 500;
  box-shadow: 0 8px 30px rgba(123,45,59,0.35);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== ABOUT ===== */
.about { padding: 100px 24px; background: #FDF8F5; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(123,45,59,0.12); }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
.about-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,45,59,0.08); color: #7B2D3B;
  padding: 10px 18px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  margin-top: 16px;
}
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: #5A4040; }
.about-features svg { flex-shrink: 0; margin-top: 2px; }

/* ===== SERVICES ===== */
.services { padding: 100px 24px; background: #F9EDE8; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #FDF8F5; border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(123,45,59,0.06);
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(123,45,59,0.1); border-color: rgba(123,45,59,0.12); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(123,45,59,0.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; color: #2A1F1F; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: #6B5555; line-height: 1.7; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 24px; background: #FDF8F5; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; cursor: pointer;
}
.gallery-item:nth-child(even) { aspect-ratio: 4/4; }
.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(42,31,31,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #FDF8F5; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; }

/* ===== FAQ ===== */
.faq { padding: 100px 24px; background: #F9EDE8; }
.faq-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #FDF8F5; border-radius: 16px; border: 1px solid rgba(123,45,59,0.06); overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(123,45,59,0.15); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: 0.95rem; font-weight: 500; color: #2A1F1F;
  text-align: left; gap: 16px;
}
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: #7B2D3B; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.active .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; font-size: 0.9rem; color: #6B5555; line-height: 1.75; }

/* ===== CTA ===== */
.cta { padding: 100px 24px; background: #7B2D3B; position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(245,213,192,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner {
  max-width: 1200px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 40px; position: relative; z-index: 1;
  flex-wrap: wrap;
}
.cta-text .section-label { color: #F5D5C0; }
.cta-text .section-label::before { background: #F5D5C0; }
.cta-text .section-title { color: #FDF8F5; }
.cta-text .section-title .accent { color: #F5D5C0; }
.cta-text p { font-size: 1.05rem; color: rgba(253,248,245,0.75); line-height: 1.75; max-width: 460px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 24px; background: #FDF8F5; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(123,45,59,0.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #7B2D3B; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.contact-item a { color: #5A4040; font-size: 0.95rem; transition: color 0.2s; }
.contact-item a:hover { color: #7B2D3B; }
.contact-item span { color: #5A4040; font-size: 0.95rem; line-height: 1.6; }

/* Contact Form */
.contact-form-wrap { background: #F9EDE8; border-radius: 24px; padding: 40px; }
.contact-form h3 { font-size: 1.5rem; color: #2A1F1F; margin-bottom: 6px; }
.form-note { font-size: 0.85rem; color: #8A6060; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: #5A4040; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: 12px; border: 1.5px solid rgba(123,45,59,0.15);
  background: #FDF8F5; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: #2A1F1F; 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: #7B2D3B; box-shadow: 0 0 0 3px rgba(123,45,59,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 14px 18px; border-radius: 12px;
  background: rgba(123,45,59,0.08); color: #7B2D3B;
  font-size: 0.9rem; font-weight: 500;
}

/* ===== FOOTER ===== */
.footer { background: #2A1F1F; color: rgba(253,248,245,0.7); padding: 60px 24px 30px; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(253,248,245,0.08);
}
.footer-brand .logo { color: #FDF8F5; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-links strong, .footer-contact strong {
  display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: #F5D5C0; margin-bottom: 16px; font-family: 'Inter', sans-serif;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #F5D5C0; }
.footer-contact p { font-size: 0.9rem; line-height: 1.7; }
.footer-contact a { color: #F5D5C0; transition: color 0.2s; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; text-align: center; font-size: 0.82rem; color: rgba(253,248,245,0.4); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal[data-revealed="true"] { opacity: 0; transform: translateY(24px); }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal[data-revealed="true"] { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(253,248,245,0.98); backdrop-filter: blur(16px);
    flex-direction: column; padding: 24px; gap: 20px;
    transform: translateY(-100%); opacity: 0;
    transition: all 0.3s ease; pointer-events: none;
    border-bottom: 1px solid rgba(123,45,59,0.08);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .hero-img-main img { height: 450px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-left { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 90px 20px 50px; }
  .hero-title { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-img-accent { left: -10px; bottom: -20px; }
  .hero-img-accent img { width: 200px; height: 200px; }
  .hero-card { right: 0; top: 20px; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:nth-child(even) { aspect-ratio: 4/3; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
}
