:root{
  --bg: #FFF7F4;
  --surface: #FFFFFF;
  --blush: #F6D9E2;
  --accent: #C86B8A;
  --text: #1F1F1F;
  --muted: #666666;
  --border: #EAD7DE;
  --success: #1D7A5A;

  --radius: 18px;
  --shadow: 0 14px 40px rgba(31,31,31,.08);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;

  --btn-h: 48px;
  --container: 1100px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(200,107,138,.18), transparent 60%),
    radial-gradient(1000px 600px at 100% 10%, rgba(246,217,226,.45), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  padding-bottom: 74px; /* space for sticky CTA on mobile */
}

.mm{
  font-family: "Noto Sans Myanmar", system-ui, sans-serif;
  display: block;
  font-weight: 600;
  color: var(--muted);
  margin-top: 4px;
}

a{ color: inherit; }
button{ font: inherit; }
img{ max-width: 100%; height: auto; display: block; }

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,247,244,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234,215,222,.7);
}
.header.is-scrolled{
  background: rgba(255,247,244,.92);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 12px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-height: 48px;
}
.brand__mark{
  width: 48px;
height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blush), rgba(200,107,138,.35));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--text);
  box-shadow: 0 10px 22px rgba(200,107,138,.18);
}
.brand__logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__name{
  font-weight: 800;
  letter-spacing: .2px;
}
.brand__mm{
  font-size: 13px;
  margin-top: 2px;
}

.nav--desktop{ display: none; }
.nav__link{
  border: 0;
  background: transparent;
  padding: 10px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
.nav__link:hover{ background: rgba(246,217,226,.45); }

.icon-btn{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.7);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.icon-btn__bar{
  width: 20px;
  height: 2px;
  background: var(--text);
  display: block;
  margin: 2px 0;
  border-radius: 2px;
}
.icon-btn--close{
  font-size: 16px;
  font-weight: 700;
}

/* Drawer */
.backdrop{
  position: fixed;
  inset: 0;
  background: rgba(31,31,31,.42);
  z-index: 60;
}
.drawer{
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow);
  z-index: 70;
  transform: translateX(100%);
  transition: transform .22s ease;
  display: flex;
  flex-direction: column;
}
.drawer.is-open{ transform: translateX(0); }

.drawer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px 14px;
  border-bottom: 1px solid rgba(234,215,222,.7);
}
.drawer__name{ font-weight: 800; }
.drawer__mm{ font-size: 13px; }

.drawer__links{
  padding: 10px 10px;
  display: grid;
  gap: 8px;
}
.drawer__link{
  text-align: left;
  border: 1px solid rgba(234,215,222,.9);
  background: rgba(246,217,226,.25);
  border-radius: 14px;
  padding: 12px 12px;
  cursor: pointer;
  min-height: 48px;
  font-weight: 600;
}
.drawer__link:hover{ background: rgba(246,217,226,.45); }

.drawer__cta{
  margin-top: auto;
  padding: 12px 12px 18px 12px;
  border-top: 1px solid rgba(234,215,222,.7);
}
.drawer__note{ color: var(--muted); font-size: 14px; margin: 10px 4px 0; }

/* Typography */
.h1{
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 10px;
}
.h2{
  font-size: 22px;
  margin: 0;
}
.h3{
  font-size: 16px;
  margin: 0 0 8px;
}
.h4{
  font-size: 14px;
  margin: 0 0 10px;
}
.lead{
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 14px;
}
.muted{ color: var(--muted); }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--btn-h);
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active{ transform: translateY(1px) scale(.99); }
.btn--full{ width: 100%; }

.btn--primary{
  background: linear-gradient(135deg, rgba(200,107,138,.95), rgba(246,217,226,.95));
  color: var(--text);
  border-color: rgba(200,107,138,.22);
  box-shadow: 0 14px 26px rgba(200,107,138,.18);
}
.btn--primary:hover{ box-shadow: 0 18px 34px rgba(200,107,138,.22); }

.btn--ghost{
  background: rgba(255,255,255,.7);
  border-color: rgba(234,215,222,.95);
}
.btn--ghost:hover{ background: rgba(246,217,226,.32); }

.link{
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 12px;
}
.link:hover{ background: rgba(246,217,226,.35); }

/* Pages */
.main{ padding: 16px 0 24px; }
.page{ display: none; }
.page.is-active{ display: block; }
.page-head{ padding: 10px 0 4px; }

/* Hero */
.hero{
  display: grid;
  gap: 16px;
  padding: 10px 0 6px;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(246,217,226,.55);
  border: 1px solid rgba(234,215,222,.95);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  width: fit-content;
}
.hero__cta{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.trust-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.trust-chip{
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(234,215,222,.95);
  border-radius: 16px;
  padding: 12px 12px;
}
.note{
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(234,215,222,.95);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
}
.note-inline{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(246,217,226,.22);
}

.hero__media{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(255,255,255,.6);
  box-shadow: var(--shadow);
  min-height: 240px;
}
.hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section + grids */
.section{ padding: 18px 0; }
.section__head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.grid{
  display: grid;
  gap: 12px;
}
.grid--services{ grid-template-columns: 1fr; }
.grid--gallery{ grid-template-columns: 1fr 1fr; }
.grid--reviews{ grid-template-columns: 1fr; }
.grid--team{ grid-template-columns: 1fr; }
.grid--packages{ grid-template-columns: 1fr; }
.grid--two{ grid-template-columns: 1fr; }
.grid--form2{ grid-template-columns: 1fr; gap: 10px; }

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(255,255,255,.75);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(31,31,31,.05);
  transition: transform .16s ease;
}
.card:hover{ transform: translateY(-1px); }

.card--review .stars{
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: 2px;
}

/* Gallery cards */
.gcard{
  margin: 0;
  display: grid;
  gap: 8px;
}
.gcard__img{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(255,255,255,.7);
}
.gcard__img img{
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.gcard__cap{
  font-size: 14px;
  color: var(--muted);
}

/* Team */
.team-card .avatar{
  border-radius: 999px;
  width: 84px;
  height: 84px;
  overflow: hidden;
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(255,255,255,.7);
  justify-self: start;
}
.team-card .avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA slab */
.cta-slab{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(246,217,226,.28);
}
.cta-slab__title{ font-weight: 800; }
.cta-slab__sub{ font-size: 14px; color: var(--muted); }

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.btn-stack{
  display: grid;
  gap: 10px;
  margin: 12px 0;
}
.info{ display: grid; gap: 8px; color: var(--muted); }
.map-row{ margin-top: 10px; }

/* Form */
.form{ display: grid; gap: 12px; margin-top: 10px; }
.field{ display: grid; gap: 6px; }
.field span{ font-weight: 700; font-size: 14px; }

input, select, textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(255,255,255,.85);
  padding: 12px 12px;
  font: inherit;
  font-size: 16px;
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(200,107,138,.5);
  box-shadow: 0 0 0 4px rgba(200,107,138,.12);
}

.form__hint{ font-size: 13px; color: var(--muted); margin: 10px 2px 0; }
.form__error{
  margin: 10px 0 0;
  padding: 12px;
  border-radius: 14px;
  background: rgba(200,0,0,.06);
  border: 1px solid rgba(200,0,0,.18);
  color: #7A1D1D;
}
.policy{
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px dashed rgba(234,215,222,.95);
}

/* Accordion */
.accordion{ display: grid; gap: 10px; }

.acc-item{
  width: 100%;
  text-align: left;
  border-radius: var(--radius);
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(255,255,255,.75);
  padding: 14px;
  cursor: pointer;
  min-height: var(--btn-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
}
.acc-panel{
  padding: 12px 14px;
  margin-top: -8px;
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid rgba(234,215,222,.95);
  border-top: 0;
  background: rgba(246,217,226,.18);
  color: var(--muted);
}
.acc-icon{
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(246,217,226,.35);
  font-weight: 900;
}

/* Footer */
.footer{
  margin-top: 24px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(234,215,222,.7);
}
.footer__links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.footer__link{
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(234,215,222,.95);
  background: rgba(255,255,255,.65);
  font-weight: 700;
}
.footer__link:hover{ background: rgba(246,217,226,.35); }

/* Sticky CTA */
.sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,247,244,.92);
  border-top: 1px solid rgba(234,215,222,.75);
  backdrop-filter: blur(10px);
}
.sticky-cta__btn{
  min-height: 52px;
  border-radius: 16px;
  text-decoration: none;
  display: grid;
  place-items: center;
  font-weight: 900;
  border: 1px solid transparent;
}
.sticky-cta__btn--call{
  background: linear-gradient(135deg, rgba(200,107,138,.92), rgba(246,217,226,.92));
  border-color: rgba(200,107,138,.22);
}
.sticky-cta__btn--wa{
  background: rgba(255,255,255,.78);
  border-color: rgba(234,215,222,.95);
}

/* Desktop enhancements only */
@media (min-width: 860px){
  body{ padding-bottom: 0; }

  .nav--desktop{ display: flex; gap: 6px; }
  .icon-btn{ display: none; }

  .hero{
    grid-template-columns: 1.1fr .9fr;
    align-items: stretch;
    gap: 20px;
    padding-top: 18px;
  }
  .hero__cta{
    grid-template-columns: auto auto;
    justify-content: start;
  }
  .trust-row{ grid-template-columns: repeat(3, 1fr); }

  .grid--services{ grid-template-columns: repeat(3, 1fr); }
  .grid--gallery{ grid-template-columns: repeat(4, 1fr); }
  .grid--reviews{ grid-template-columns: repeat(3, 1fr); }
  .grid--team{ grid-template-columns: repeat(3, 1fr); }
  .grid--packages{ grid-template-columns: repeat(3, 1fr); }
  .grid--two{ grid-template-columns: 1fr 1fr; }
  .grid--form2{ grid-template-columns: 1fr 1fr; }

  .gcard__img img{ height: 180px; }
  .sticky-cta{ display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; }
}
