/* ============================================================
   DESIGN TOKENS — change these 8 variables to re-theme the
   entire site for a new client. Nothing else needs to change.
   ============================================================ */
:root{
  --color-bg:        #F6F1E4;   /* page background, warm paper */
  --color-bg-alt:     #EFE6D2;  /* alternating section background */
  --color-ink:        #24261F;  /* body text */
  --color-forest:     #1B4332;  /* primary brand color */
  --color-forest-dk:  #12291F;  /* darker brand shade, hero bg */
  --color-gold:        #C08A28; /* accent / CTA */
  --color-gold-soft:   #E8C572; /* highlight / hover */
  --radius: 14px;
  --font-display: 'Fraunces', serif;
  --font-body: 'Work Sans', 'Noto Sans Myanmar', sans-serif;
  --font-mm: 'Noto Sans Myanmar', sans-serif;
  --max-width: 1160px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } *{ animation:none !important; transition:none !important; } }

body{
  overflow-x:hidden;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }
a{ color:inherit; }
.container{ max-width:var(--max-width); margin:0 auto; padding:0 24px; }
.mm{ font-family:var(--font-mm); }
h1,h2,h3{ font-family:var(--font-display); line-height:1.15; }
:focus-visible{ outline:3px solid var(--color-gold); outline-offset:3px; }

section{ padding:96px 0; }
.section-alt{ background:var(--color-bg-alt); }
.eyebrow{ font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; color:var(--color-gold); font-weight:600; margin-bottom:12px; display:block; }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head h2{ font-size:clamp(1.8rem,3.5vw,2.6rem); }
.section-head p{ margin-top:14px; color:#4a4d40; font-size:1.05rem; }

.btn{ display:inline-flex; align-items:center; gap:8px; padding:14px 28px; border-radius:999px; font-weight:600; text-decoration:none; border:2px solid transparent; cursor:pointer; font-size:.95rem; transition: transform .15s ease, background .2s ease; }
.btn:hover{ transform:translateY(-2px); }
.btn-gold{ background:var(--color-gold); color:#1c1503; }
.btn-gold:hover{ background:var(--color-gold-soft); }
.btn-outline{ border-color:rgba(255,255,255,.5); color:#fff; }
.btn-outline:hover{ border-color:#fff; background:rgba(255,255,255,.08); }

/* ---------- Header ---------- */
header{ position:sticky; top:0; z-index:50; background:rgba(246,241,228,.9); backdrop-filter:blur(8px); border-bottom:1px solid rgba(0,0,0,.06); }
.nav{ display:flex; align-items:center; justify-content:space-between; padding:16px 24px; }
.logo{ font-family:var(--font-display); font-weight:700; font-size:1.3rem; color:var(--color-forest); text-decoration:none; }
.nav-links{ display:none; gap:32px; list-style:none; }
.nav-links a{ text-decoration:none; font-weight:500; font-size:.95rem; position:relative; }
.nav-links a::after{ content:''; position:absolute; left:0; bottom:-4px; width:0; height:2px; background:var(--color-gold); transition:width .2s; }
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:none; }
.hamburger{ display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.hamburger span{ width:24px; height:2px; background:var(--color-ink); display:block; }
.mobile-menu{ display:none; flex-direction:column; gap:0; background:var(--color-bg); border-top:1px solid rgba(0,0,0,.06); }
.mobile-menu.open{ display:flex; }
.mobile-menu a{ padding:16px 24px; text-decoration:none; border-bottom:1px solid rgba(0,0,0,.05); font-weight:500; }

@media(min-width:860px){
  .hamburger{ display:none; }
  .mobile-menu{ display:none !important; }
  .nav-links{ display:flex; }
  .nav-cta{ display:inline-flex; }
}

/* ---------- Hero ---------- */
.hero{ position:relative; background:var(--color-forest-dk); color:#fdfaf3; overflow:hidden; padding:120px 0 100px; }
.hero-glow{ position:absolute; top:-20%; right:-10%; width:60vw; height:60vw; max-width:700px; max-height:700px; background:radial-gradient(circle, rgba(232,197,114,.35) 0%, rgba(232,197,114,0) 70%); pointer-events:none; }
.hero-inner{ position:relative; max-width:720px; }
.hero h1{ font-size:clamp(2.4rem,6vw,4rem); font-weight:600; }
.hero .tagline-mm{ font-family:var(--font-mm); font-size:1.15rem; opacity:.85; margin-top:14px; }
.hero p.sub{ margin-top:20px; font-size:1.1rem; opacity:.85; max-width:520px; }
.hero-actions{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }

/* Signature divider — hand-stitched textile motif, echoes Myanmar
   woven/embroidered borders (kalaga-style) between sections */
.stitch-divider{ height:28px; width:100%; background:var(--color-bg);
  background-image: radial-gradient(circle, var(--color-gold) 2.5px, transparent 2.6px);
  background-size: 22px 22px; background-position: center 6px; background-repeat: repeat-x; }
.section-alt + .stitch-divider, .stitch-divider.on-alt{ background:var(--color-bg-alt); }

/* ---------- About ---------- */
.about-grid{ display:grid; grid-template-columns:1fr; gap:48px; align-items:center; }
.placeholder-img{ border-radius:var(--radius); aspect-ratio:4/3; background:linear-gradient(135deg,var(--color-forest),var(--color-gold)); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.85); font-size:.85rem; text-align:center; padding:20px; }
@media(min-width:800px){ .about-grid{ grid-template-columns:1fr 1fr; } }

/* ---------- Menu / Services ---------- */
.card-grid{ display:grid; grid-template-columns:1fr; gap:24px; }
@media(min-width:640px){ .card-grid{ grid-template-columns:1fr 1fr; } }
@media(min-width:960px){ .card-grid{ grid-template-columns:repeat(3,1fr); } }
.card{ background:var(--color-bg); border-radius:var(--radius); padding:28px; border:1px solid rgba(0,0,0,.06); transition:transform .2s ease, box-shadow .2s ease; }
.card:hover{ transform:translateY(-4px); box-shadow:0 14px 30px rgba(27,67,50,.12); }
.card .icon{ width:44px; height:44px; border-radius:10px; background:var(--color-forest); color:var(--color-gold-soft); display:flex; align-items:center; justify-content:center; margin-bottom:16px; font-size:1.2rem; }
.card h3{ font-size:1.15rem; margin-bottom:8px; }
.card p{ color:#4a4d40; font-size:.95rem; }
.card .price{ margin-top:14px; font-weight:600; color:var(--color-forest); }

/* ---------- Gallery ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
@media(min-width:760px){ .gallery-grid{ grid-template-columns:repeat(4,1fr); } }
.gallery-grid .placeholder-img{ aspect-ratio:1/1; font-size:.75rem; }

/* ---------- Testimonials ---------- */
.testimonials{ background:var(--color-forest-dk); color:#fdfaf3; }
.t-scroll{ display:flex; gap:24px; overflow-x:auto; scroll-snap-type:x mandatory; margin-top:12px; scrollbar-width:none; -ms-overflow-style:none; }
.t-scroll::-webkit-scrollbar{ display:none; }
.t-card{ scroll-snap-align:start; flex:0 0 min(85%,360px); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:var(--radius); padding:28px; }
.t-card p.quote{ font-size:1.02rem; }
.t-card .who{ margin-top:16px; font-weight:600; color:var(--color-gold-soft); font-size:.9rem; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr; gap:48px; }
@media(min-width:900px){ .contact-grid{ grid-template-columns:1.1fr 1fr; } }
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-weight:500; margin-bottom:6px; font-size:.9rem; }
.form-field input, .form-field textarea{ width:100%; padding:13px 14px; border-radius:10px; border:1.5px solid rgba(0,0,0,.15); font-family:var(--font-body); font-size:.95rem; background:#fff; }
.form-field input:focus, .form-field textarea:focus{ border-color:var(--color-forest); }
.hp-field{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; } /* honeypot: hidden from humans, visible to bots */
.form-msg{ margin-top:14px; font-size:.9rem; display:none; padding:12px 14px; border-radius:10px; }
.form-msg.show{ display:block; }
.form-msg.ok{ background:#e4f2e9; color:#1B4332; }
.form-msg.err{ background:#fbe7e4; color:#8a2c1d; }

.info-card{ background:var(--color-forest); color:#fdfaf3; border-radius:var(--radius); padding:32px; }
.info-row{ display:flex; gap:14px; margin-bottom:18px; align-items:flex-start; }
.info-row .ic{ width:22px; text-align:center; opacity:.8; }
.hours-table{ width:100%; border-collapse:collapse; margin-top:8px; font-size:.9rem; }
.hours-table td{ padding:4px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.hours-table td:last-child{ text-align:right; }
.map-embed{ margin-top:20px; border-radius:10px; overflow:hidden; border:1px solid rgba(255,255,255,.15); }
.map-embed iframe{ width:100%; height:220px; border:0; filter:grayscale(.2); }

/* ---------- Footer ---------- */
footer{ background:var(--color-forest-dk); color:rgba(255,255,255,.7); padding:56px 0 28px; }
.footer-grid{ display:grid; grid-template-columns:1fr; gap:32px; margin-bottom:36px; }
@media(min-width:760px){ .footer-grid{ grid-template-columns:2fr 1fr 1fr; } }
.footer-grid h4{ color:#fdfaf3; font-size:.95rem; margin-bottom:14px; }
.footer-grid ul{ list-style:none; }
.footer-grid ul li{ margin-bottom:10px; }
.footer-grid ul a{ text-decoration:none; color:rgba(255,255,255,.7); font-size:.9rem; }
.footer-grid ul a:hover{ color:var(--color-gold-soft); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding-top:22px; font-size:.8rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }

/* Scroll-reveal */
.reveal{ opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

.cookie-banner{ position:fixed; left:0; right:0; bottom:0; background:var(--color-ink); color:#fdfaf3; padding:16px 20px; display:flex; gap:16px; flex-wrap:wrap; align-items:center; justify-content:space-between; z-index:70; transform:translateY(100%); transition:transform .3s ease; }
.cookie-banner.show{ transform:translateY(0); }
.cookie-banner p{ font-size:.85rem; max-width:600px; }
.cookie-banner button{ background:var(--color-gold); border:none; padding:10px 20px; border-radius:999px; font-weight:600; cursor:pointer; }
