/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #4a3535;
  background-color: #FDF8F5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #781F37;
  background: #FDF0F2;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: #2d0c16;
  margin-bottom: 20px;
}

.section-title .accent {
  color: #781F37;
}

.section-desc {
  font-size: 1.05rem;
  color: #6b5050;
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #781F37;
  color: #fff;
  box-shadow: 0 4px 16px rgba(120, 31, 55, 0.3);
}

.btn-primary:hover {
  background: #601a30;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(120, 31, 55, 0.35);
}

.btn-outline {
  background: transparent;
  color: #781F37;
  border: 2px solid #781F37;
}

.btn-outline:hover {
  background: #781F37;
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #781F37;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: #fdf0f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(120, 31, 55, 0.08);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(120, 31, 55, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #781F37;
  font-weight: 700;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a3535;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: #781F37;
  background: #FDF0F2;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #781F37;
  background: #FDF0F2;
  padding: 10px 18px;
  border-radius: 50px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #781F37;
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle .bar {
  width: 24px;
  height: 2.5px;
  background: #781F37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FDF8F5 0%, #FDF0F2 50%, #FFFAF8 100%);
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  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;
  font-size: 0.82rem;
  font-weight: 700;
  color: #781F37;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(120, 31, 55, 0.1);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: #2d0c16;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6b5050;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #4a3535;
  font-weight: 600;
}

/* Hero Images */
.hero-images {
  position: relative;
  height: 620px;
}

.hero-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(120, 31, 55, 0.15);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-main {
  width: 340px;
  height: 440px;
  position: absolute;
  top: 0;
  right: 40px;
  z-index: 2;
}

.hero-img-secondary {
  width: 260px;
  height: 190px;
  position: absolute;
  bottom: 140px;
  left: 0;
  z-index: 3;
  border: 4px solid #fff;
}

.hero-img-accent {
  width: 200px;
  height: 145px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  border: 4px solid #fff;
}

.hero-float-card {
  position: absolute;
  bottom: 280px;
  left: 30px;
  z-index: 4;
  background: #781F37;
  color: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(120, 31, 55, 0.35);
  animation: float 4s ease-in-out infinite;
}

.hero-float-card strong {
  display: block;
  font-size: 0.9rem;
}

.hero-float-card span {
  font-size: 0.78rem;
  opacity: 0.8;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(247, 188, 211, 0.3);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: rgba(252, 222, 208, 0.4);
  bottom: -50px;
  left: -50px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #FDF8F5;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  background: #fff;
  border-color: rgba(120, 31, 55, 0.12);
  box-shadow: 0 12px 40px rgba(120, 31, 55, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: #FDF0F2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #781F37;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #781F37;
  color: #fff;
}

.service-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: #2d0c16;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: #6b5050;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #FDF8F5;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 580px;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(120, 31, 55, 0.12);
  width: 340px;
  height: 420px;
  position: absolute;
  top: 0;
  left: 0;
}

.about-img-float {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(120, 31, 55, 0.15);
  width: 260px;
  height: 195px;
  position: absolute;
  bottom: 20px;
  right: 0;
  border: 4px solid #FDF8F5;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-stat {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  background: #781F37;
  color: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(120, 31, 55, 0.3);
  z-index: 2;
}

.about-stat strong {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-stat span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.about-text .section-desc {
  margin-bottom: 24px;
}

.about-text p {
  font-size: 0.95rem;
  color: #6b5050;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #4a3535;
  font-weight: 600;
}

.value-check {
  width: 22px;
  height: 22px;
  background: #FDF0F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #781F37;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #FDF8F5 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: #FDF8F5;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(120, 31, 55, 0.06);
  transition: all 0.3s ease;
}

.why-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(120, 31, 55, 0.08);
  transform: translateY(-4px);
}

.why-number {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.4rem;
  color: #F7BCD3;
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  color: #2d0c16;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  color: #6b5050;
  line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: #781F37;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(247, 188, 211, 0.15);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(252, 222, 208, 0.1);
  border-radius: 50%;
  bottom: -150px;
  left: -50px;
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-text {
  flex: 1;
}

.cta-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-desc {
  font-size: 1rem;
  color: #6b5050;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: #FDF0F2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #781F37;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #781F37;
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: #4a3535;
  line-height: 1.6;
}

.contact-detail a:hover {
  color: #781F37;
  text-decoration: underline;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(120, 31, 55, 0.1);
}

/* Contact Form */
.contact-form-wrap {
  max-width: 100%;
}

.contact-form-card {
  background: #FDF8F5;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(120, 31, 55, 0.06);
}

.contact-form-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  color: #2d0c16;
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 0.9rem;
  color: #6b5050;
  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: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #781F37;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(120, 31, 55, 0.12);
  border-radius: 12px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #4a3535;
  background: #fff;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b09090;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #781F37;
  box-shadow: 0 0 0 4px rgba(120, 31, 55, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success svg {
  margin: 0 auto 16px;
}

.form-success h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  color: #2d0c16;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.9rem;
  color: #6b5050;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #2d0c16;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #F7BCD3;
}

.footer-contact strong {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

.footer-contact address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #F7BCD3;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hero-float-card {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

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

  .hero-sub {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    align-items: center;
  }

  .hero-images {
    height: 480px;
    max-width: 500px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 440px;
    max-width: 460px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(120, 31, 55, 0.08);
    box-shadow: 0 8px 24px rgba(120, 31, 55, 0.08);
  }

  .nav-links.open a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-grid {
    padding: 40px 24px;
  }

  .hero-images {
    height: 380px;
  }

  .hero-img-main {
    width: 240px;
    height: 320px;
    right: 10px;
  }

  .hero-img-secondary {
    width: 180px;
    height: 130px;
    left: 10px;
    bottom: 100px;
  }

  .hero-img-accent {
    width: 150px;
    height: 110px;
    right: 10px;
    bottom: 10px;
  }

  .hero-float-card {
    left: 10px;
    bottom: 200px;
    padding: 12px 16px;
  }

  .services {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .about-images {
    height: 360px;
  }

  .about-img-main {
    width: 240px;
    height: 300px;
  }

  .about-img-float {
    width: 180px;
    height: 135px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-images {
    height: 300px;
  }

  .hero-img-main {
    width: 200px;
    height: 260px;
  }

  .hero-img-secondary {
    width: 150px;
    height: 110px;
  }

  .hero-img-accent {
    width: 120px;
    height: 85px;
  }

  .hero-float-card {
    display: none;
  }
}
