/* =========================================
   Golden Glow - Mobile-first CSS (No framework)
   Phone-first (360px), premium minimal, fast
   ========================================= */

:root{
  /* Colors (premium minimal) */
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #fafafa;
  --text: #121212;
  --muted: #5d5d5d;
  --border: #e9e9e9;

  /* Gold accent (subtle, premium) */
  --brand: #b8924b;
  --brand2: #9e7a3c;

  --radius: 16px;
  --radius-sm: 12px;

  /* Spacing (8pt system) */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;

  --max: 1120px;

  /* Sticky bar */
  --ctaH: 66px;

  /* Typography */
  --font: "Noto Sans Myanmar", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; height:auto; }
a{ color: inherit; text-decoration:none; }
button,input,select,textarea{ font-family: var(--font); }

:focus-visible{
  outline: 3px solid rgba(184,146,75,0.35);
  outline-offset: 2px;
}

/* Layout */
.container{
  max-width: var(--max);
  margin:0 auto;
  padding: 0 var(--s2);
}

.section{ padding: var(--s5) 0; }
.section-sm{ padding: var(--s4) 0; }

.grid{ display:grid; gap: var(--s2); }
@media (min-width: 900px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: repeat(3,1fr); }
  .grid-4{ grid-template-columns: repeat(4,1fr); }
}

/* Bilingual blocks (EN first, MM under) */
.en{
  font-size: 16px;
  line-height: 1.45;
}
.mm{
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
@media (min-width: 900px){
  .en{ font-size: 17px; }
  .mm{ font-size: 15px; }
}

/* Headings */
.h1{
  margin:0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing:-0.02em;
}
.h2{
  margin:0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing:-0.01em;
}
.h3{
  margin:0;
  font-size: 18px;
  line-height: 1.25;
}
.kicker{
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.small{
  font-size: 13px;
  color: var(--muted);
}

@media (min-width: 900px){
  .h1{ font-size: 40px; }
  .h2{ font-size: 28px; }
}

/* Cards */
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s2);
}
.card.soft{ background: var(--surface2); }
.card.shadow{
  border-color: rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.card-title{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: var(--s2);
}

/* Badge */
.badge{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  border:1px solid var(--border);
  background:#fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.badge svg{ width:16px; height:16px; }

/* Buttons (tap-friendly 48px+) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding: 12px 16px;
  border-radius: 999px;
  border:1px solid transparent;
  cursor:pointer;
  font-weight:700;
  font-size:15px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn svg{ width:18px; height:18px; }

.btn-primary{
  background: var(--brand);
  color:#fff;
}
.btn-primary:hover{ background: var(--brand2); }

.btn-secondary{
  background:#fff;
  border-color: var(--border);
  color: var(--text);
}
.btn-secondary:hover{ border-color: rgba(0,0,0,0.18); }

.btn-ghost{
  background: transparent;
  border-color: transparent;
  color: var(--text);
}
.btn-ghost:hover{ background: rgba(0,0,0,0.04); }

.btn-block{ width:100%; }

/* Header + Nav (injected by JS) */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--s2);
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width:0;
}
.brand img{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background:#fff;
}
.brand-text{ min-width:0; }
.brand-text strong{
  display:block;
  font-size: 14px;
  line-height:1.15;
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}
.brand-text span{
  display:block;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.nav-desktop{ display:none; align-items:center; gap: 10px; }
.nav-desktop a{
  padding: 10px 10px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
}
.nav-desktop a:hover{ background: rgba(0,0,0,0.04); color: var(--text); }
.nav-desktop a.active{
  border:1px solid var(--border);
  background:#fff;
  color: var(--text);
}

.menu-btn{
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  border:1px solid var(--border);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}

.mobile-menu{
  display:none;
  border-top:1px solid var(--border);
  background:#fff;
}
.mobile-menu.open{ display:block; }
.mobile-menu a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 14px 0;
  border-bottom:1px solid var(--border);
}
.mobile-menu a strong{ font-size: 15px; }
.mobile-menu a span{ font-size: 12px; color: var(--muted); }
.mobile-menu a.active strong{ color: var(--brand); }

@media (min-width: 900px){
  .menu-btn{ display:none; }
  .mobile-menu{ display:none !important; }
  .nav-desktop{ display:flex; }
}

/* Hero */
.hero{ padding: var(--s5) 0 var(--s3); }
.hero-box{
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s3);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}
.hero-actions{
  margin-top: var(--s2);
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 480px){
  .hero-actions{ grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px){
  .hero-grid{
    display:grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--s3);
    align-items: center;
  }
}

/* Lists */
.list{ margin:0; padding-left: 18px; }
.list li{ margin: 8px 0; }

/* Forms */
.form{ display:grid; gap: 12px; }
.field label{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.input, select, textarea{
  width:100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:#fff;
  font-size: 15px;
}
textarea{ min-height: 120px; resize: vertical; }
.help{ font-size: 12px; color: var(--muted); margin-top: 6px; }

.notice{
  border: 1px solid rgba(184,146,75,0.35);
  background: rgba(184,146,75,0.08);
  padding: 12px;
  border-radius: 12px;
}

/* Accordion */
.accordion{
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
}
.acc-item + .acc-item{ border-top:1px solid var(--border); }
.acc-btn{
  width:100%;
  border:0;
  background:#fff;
  padding: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  cursor:pointer;
  text-align:left;
}
.acc-btn strong{ font-size: 15px; }
.acc-icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border:1px solid var(--border);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
}
.acc-panel{ display:none; padding: 0 14px 14px; }
.acc-item.open .acc-panel{ display:block; }

/* Gallery grid + lightbox */
.gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 700px){
  .gallery{ grid-template-columns: repeat(4,1fr); }
}
.g-item{
  border:1px solid var(--border);
  border-radius: 14px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
}
.g-item img{
  width:100%;
  height: 140px;
  object-fit: cover;
}
@media (min-width: 900px){
  .g-item img{ height: 180px; }
}
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  background: rgba(0,0,0,0.72);
  z-index: 100;
}
.lightbox.open{ display:flex; }
.lightbox img{
  max-width: 100%;
  max-height: 85vh;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.15);
}
.lightbox .close{
  position:absolute;
  top:14px;
  right:14px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  color:#fff;
}

/* Footer (injected by JS) */
.site-footer{
  border-top:1px solid var(--border);
  background:#fff;
  padding: var(--s4) 0;
}
.footer-grid{ display:grid; gap: var(--s3); }
@media (min-width: 900px){
  .footer-grid{ grid-template-columns: 1.2fr 0.8fr; }
}
.footer-links a{
  display:block;
  padding: 8px 0;
  color: var(--muted);
}
.footer-links a:hover{ color: var(--text); }
.footer-bottom{
  margin-top: var(--s3);
  padding-top: var(--s2);
  border-top:1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

/* Sticky CTA bar (mobile) */
body.has-cta{ padding-bottom: calc(var(--ctaH) + var(--s2)); }

.cta-bar{
  position:fixed;
  left:0; right:0; bottom:0;
  height: var(--ctaH);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-top:1px solid var(--border);
  z-index: 60;
}
.cta-inner{
  height:100%;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
}
.cta-btn{
  min-height: 44px;
  border-radius: 999px;
  border:1px solid var(--border);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}
.cta-btn svg{ width:18px; height:18px; }
.cta-btn.primary{
  background: var(--brand);
  border-color: transparent;
  color:#fff;
}
@media (min-width: 900px){
  .cta-bar{ display:none; }
  body.has-cta{ padding-bottom: 0; }
}

/* Tiny reveal animation (optional, very light) */
.reveal{ opacity:0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
.reveal.show{ opacity:1; transform: translateY(0); }
