/* ===== 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;
  font-size: 16px;
  line-height: 1.7;
  color: #3D2C2C;
  background: #FFF9F9;
  -webkit-font-smoothing: antialiased;
  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, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; color: #7B2431; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7B2431;
  background: #FADADD;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-title { margin-bottom: 16px; }
.section-desc { color: #6B5050; font-size: 1.05rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #7B2431;
  color: #fff;
  border-color: #7B2431;
}
.btn-primary:hover { background: #5E1A26; border-color: #5E1A26; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,36,49,0.3); }
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: #7B2431;
  border-color: #fff;
}
.btn-light:hover { background: #FADADD; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,249,249,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,36,49,0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(123,36,49,0.1); }
.header-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-size: 1.15rem; font-weight: 700; color: #7B2431; }
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #3D2C2C;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.nav-list a:hover { color: #7B2431; background: #FADADD; }
.nav-cta { background: #7B2431 !important; color: #fff !important; }
.nav-cta:hover { background: #5E1A26 !important; }

/* Nav Toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger-line { display: block; width: 24px; height: 2px; background: #7B2431; border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(61,12,20,0.82) 0%, rgba(123,36,49,0.70) 50%, rgba(61,12,20,0.80) 100%); }
.hero-content { position: relative; z-index: 1; padding: 120px 24px 80px; max-width: 760px; }
.hero-badge {
  display: inline-block;
  background: rgba(250,221,221,0.2);
  border: 1px solid rgba(250,221,221,0.4);
  color: #FADADD;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title { color: #fff; margin-bottom: 24px; }
.hero-title em { font-style: italic; color: #FADADD; }
.hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 40px; max-width: 560px; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section.services { background: #FFF9F9; }
.section.about { background: #FDF0F0; }
.section.gallery { background: #FFF9F9; }
.section.testimonials { background: #FDF0F0; }
.section.contact { background: #FFF9F9; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(123,36,49,0.06);
  border: 1px solid rgba(123,36,49,0.06);
  transition: all 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(123,36,49,0.12); border-color: rgba(123,36,49,0.12); }
.service-icon { width: 56px; height: 56px; border-radius: 16px; background: #FADADD; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card h3 { color: #7B2431; margin-bottom: 12px; }
.service-card p { color: #6B5050; font-size: 0.95rem; line-height: 1.75; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: 24px; box-shadow: 0 12px 40px rgba(123,36,49,0.12); width: 100%; height: 700px; object-fit: cover; }
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: #FADADD;
  border-radius: 20px;
  z-index: -1;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }
.about-content p { color: #6B5050; margin-bottom: 16px; font-size: 1.02rem; }
.about-stats { display: flex; gap: 32px; margin: 32px 0; }
.stat { text-align: center; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: #7B2431; line-height: 1; }
.stat-label { font-size: 0.82rem; color: #6B5050; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; display: block; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-item { border-radius: 20px; overflow: hidden; aspect-ratio: 5/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(123,36,49,0.06);
  border: 1px solid rgba(123,36,49,0.06);
  position: relative;
  transition: all 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(123,36,49,0.1); }
.quote-mark { position: absolute; top: 20px; right: 28px; width: 40px; height: 40px; opacity: 0.6; }
.testimonial-text { color: #3D2C2C; font-size: 1rem; line-height: 1.8; margin-bottom: 24px; margin-top: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-name { display: block; font-weight: 700; color: #7B2431; font-size: 0.9rem; }
.author-location { display: block; font-size: 0.82rem; color: #6B5050; margin-top: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #7B2431 0%, #5E1A26 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-title { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 16px; }
.cta-text { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-title { margin-bottom: 16px; }
.contact-desc { color: #6B5050; margin-bottom: 32px; font-size: 1.02rem; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: #7B2431; margin-bottom: 4px; }
.contact-item span, .contact-item a { color: #3D2C2C; font-size: 0.95rem; }
.contact-item a:hover { color: #7B2431; text-decoration: underline; }

/* Form */
.contact-form-wrap { background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 8px 40px rgba(123,36,49,0.08); border: 1px solid rgba(123,36,49,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: #7B2431; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #F5D5D5;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #3D2C2C;
  background: #FFF9F9;
  transition: all 0.25s ease;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #7B2431; background: #fff; box-shadow: 0 0 0 4px rgba(123,36,49,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #B89090; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 0.8rem; color: #B89090; margin-top: 16px; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success h3 { color: #4CAF50; margin: 16px 0 8px; font-size: 1.5rem; }
.form-success p { color: #6B5050; }

/* ===== FOOTER ===== */
.site-footer { background: #3D1A20; padding: 64px 0 0; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-links h4, .footer-contact h4 { font-family: 'Nunito', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #FADADD; margin-bottom: 20px; }
.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: #FADADD; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; line-height: 1.6; }
.footer-contact a:hover { color: #FADADD; text-decoration: underline; }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav { position: fixed; top: 76px; left: 0; right: 0; background: rgba(255,249,249,0.98); backdrop-filter: blur(12px); padding: 24px; border-bottom: 1px solid rgba(123,36,49,0.08); transform: translateY(-120%); transition: transform 0.35s ease; box-shadow: 0 8px 24px rgba(123,36,49,0.08); z-index: 999; }
  .main-nav.open { transform: translateY(0); }
  .nav-list { flex-direction: column; gap: 4px; align-items: stretch; }
  .nav-list a { padding: 14px 20px; border-radius: 12px; text-align: center; }
  .nav-cta { margin-top: 8px; }

  .hero-content { padding: 140px 24px 100px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 400px; }
  .about-image-accent { width: 100px; height: 100px; }
  .about-stats { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 16px; }
}
