* { box-sizing: border-box }
html { scroll-behavior: smooth }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #4a3b41;
  background: #fffcfd;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #a24568; text-decoration: none }
a:hover { color: #8f3a5a }
img { display: block; max-width: 100% }
::selection { background: #e7b6c6; color: #4a3b41 }

body::-webkit-scrollbar { width: 11px }
body::-webkit-scrollbar-track { background: #faf1f4 }
body::-webkit-scrollbar-thumb { background: #d8a7ba; border-radius: 8px; border: 3px solid #faf1f4 }

@keyframes plspin { to { transform: rotate(360deg) } }

@media (min-width: 901px) {
  .nav-cta-m { display: none !important }
}

.nav-backdrop {
  position: fixed; inset: 0; z-index: 115;
  background: rgba(74, 42, 55, .45);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity .45s ease;
}
.nav-backdrop.show { opacity: 1; pointer-events: auto }

@media (max-width: 900px) {
  .nav-menu {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(330px, 84vw);
    display: flex; flex-direction: column; align-items: flex-start !important; justify-content: center;
    gap: 8px !important;
    background: linear-gradient(170deg, #fffcfd 0%, #fdf0f4 60%, #f9e3eb 100%) !important;
    padding: 90px 34px 40px;
    transform: translateX(105%); transition: transform .5s cubic-bezier(.7, 0, .2, 1);
    box-shadow: -30px 0 80px rgba(143, 58, 90, .3); z-index: 120;
    overflow-y: auto;
  }
  .nav-menu::before {
    content: '';
    position: absolute; top: -70px; right: -70px;
    width: 210px; height: 210px; border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 167, 186, .35), transparent 70%);
    pointer-events: none;
  }
  .nav-menu.open { transform: translateX(0) }
  .nav-menu li { width: 100% }
  .nav-menu li a:not(.nav-cta-m) {
    display: block;
    width: 100%;
    padding: 13px 14px;
    font-size: 17px !important;
    border-radius: 12px;
    border-bottom: 1px solid rgba(163, 69, 104, .08);
    transition: background .25s, color .25s, padding-left .25s;
  }
  .nav-menu li:last-of-type a.nav-cta-m { margin-top: 22px }
  .nav-menu li a:not(.nav-cta-m):active,
  .nav-menu li a:not(.nav-cta-m):hover {
    background: rgba(255, 255, 255, .8);
    color: #a24568 !important;
    padding-left: 20px;
  }
  .nav-cta-m {
    width: 100%;
    justify-content: center;
    padding: 15px 26px !important;
    font-size: 15px !important;
  }
  .nav-toggle { display: flex !important }
  .nav-toggle span { transition: transform .35s ease, opacity .25s ease }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
  .nav-toggle.open span:nth-child(2) { opacity: 0 }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }
  .nav-cta { display: none !important }
  .hero-grid { grid-template-columns: 1fr !important; gap: 44px !important }
  .hero-copy { text-align: center; align-items: center !important }
  .hero-media { order: -1 }
  .about-grid { grid-template-columns: 1fr !important; gap: 40px !important }
  .mv-grid { grid-template-columns: 1fr !important }
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 36px 20px !important }
  .emb-grid { grid-template-columns: 1fr !important }
  .contact-grid { grid-template-columns: 1fr !important }
    .contact-form { padding: 28px 20px !important }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { min-width: 0; width: 100% }
  .form-row { grid-template-columns: 1fr !important }
  .contact-blurb { padding: 18px 16px !important }
  .contact-blurb p { overflow-wrap: break-word }
  .footer-grid { grid-template-columns: 1fr !important; gap: 36px !important }
  .test-grid { grid-template-columns: 1fr !important }
  .gallery-grid { grid-template-columns: 1fr 1fr !important }
  .sec-pad { padding: 80px 22px !important }
  .h2 { font-size: 34px !important }
  .h1 { font-size: 44px !important }
}

.wa-widget { position: fixed; right: 22px; bottom: 22px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; pointer-events: none }
.wa-widget .wa-fab { pointer-events: auto }
.wa-widget .wa-panel.open { pointer-events: auto }
.wa-fab {
  width: 60px; height: 60px; border: none; border-radius: 50%; cursor: pointer;
  background: linear-gradient(135deg, #2ab55e, #1f9d4f); color: #fff; font-size: 30px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(31, 157, 79, .45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 16px 36px rgba(31, 157, 79, .55) }
.wa-panel {
  width: min(330px, calc(100vw - 44px));
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px -12px rgba(74, 42, 55, .4);
  opacity: 0; transform: translateY(14px) scale(.97); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.wa-panel.open { opacity: 1; transform: none; pointer-events: auto }
.wa-panel-head {
  display: flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, #2ab55e, #1f9d4f); color: #fff; padding: 16px 18px;
}
.wa-panel-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .22);
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex: 0 0 auto;
}
.wa-panel-title { font-size: 15px; font-weight: 600 }
.wa-panel-sub { font-size: 12px; opacity: .85 }
.wa-close {
  margin-left: auto; background: none; border: none; color: #fff;
  font-size: 26px; line-height: 1; cursor: pointer; padding: 0 2px;
}
.wa-body { display: flex; flex-direction: column; gap: 10px; padding: 16px 18px 18px }
.wa-hint { margin: 0 0 2px; font-size: 13.5px; color: #6b555c }
.wa-body input, .wa-body select, .wa-body textarea {
  font-family: 'Poppins', sans-serif; font-size: 14px; color: #4a2a37;
  padding: 11px 13px; border: 1.5px solid #e4ece6; border-radius: 11px;
  background: #fafcfa; outline: none; min-width: 0; width: 100%; resize: vertical;
}
.wa-body input:focus, .wa-body select:focus, .wa-body textarea:focus { border-color: #2ab55e }
.wa-body button {
  margin-top: 2px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px; background: linear-gradient(135deg, #2ab55e, #1f9d4f); color: #fff;
  border: none; border-radius: 40px; font-family: 'Poppins', sans-serif;
  font-size: 14.5px; font-weight: 500; cursor: pointer;
  box-shadow: 0 10px 24px rgba(31, 157, 79, .35);
}

@media (max-width: 560px) {
  .wa-widget { right: 16px; bottom: 16px }
  .wa-fab { width: 54px; height: 54px; font-size: 27px }
  .gallery-grid { grid-template-columns: 1fr !important }
  .hero-badge { display: none !important }
  .h1 { font-size: 37px !important }
}
