/* ============================================================
   DESIGN TOKENS — change these 8 variables to re-theme the
   entire site for a new client. Nothing else needs to change.
   ============================================================ */
:root{
  --color-bg:         #F2F6F1;  /* page background, pale sage ivory */
  --color-bg-alt:      #E6EDE2; /* alternating section background */
  --color-ink:         #1E2B27; /* body text, deep teal-charcoal */
  --color-teal:        #16423C; /* primary brand color */
  --color-teal-dk:     #0E2E29; /* darker brand shade, hero bg */
  --color-amber:        #C99A3E;/* accent / CTA */
  --color-amber-soft:   #E4C57E;/* highlight / hover */
  --radius: 16px;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'Manrope', '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.65;
  -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; font-weight:400; }
:focus-visible{ outline:3px solid var(--color-amber); outline-offset:3px; }

section{ padding:96px 0; }
.section-alt{ background:var(--color-bg-alt); }
.eyebrow{ font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:var(--color-amber); font-weight:700; margin-bottom:12px; display:block; }
.section-head{ max-width:640px; margin-bottom:48px; }
.section-head h2{ font-size:clamp(2rem,4vw,2.9rem); }
.section-head p{ margin-top:14px; color:#4b5750; font-size:1.05rem; }

.btn{ display:inline-flex; align-items:center; gap:8px; padding:15px 30px; border-radius:999px; font-weight:600; text-decoration:none; border:1.5px solid transparent; cursor:pointer; font-size:.92rem; transition: transform .15s ease, background .2s ease, color .2s ease; }
.btn:hover{ transform:translateY(-2px); }
.btn-amber{ background:var(--color-amber); color:#231a06; }
.btn-amber:hover{ background:var(--color-amber-soft); }
.btn-outline{ border-color:rgba(255,255,255,.55); color:#fff; }
.btn-outline:hover{ border-color:#fff; background:rgba(255,255,255,.1); }

/* ---------- Header ---------- */
header{ position:sticky; top:0; z-index:50; background:rgba(242,246,241,.92); 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:400; font-size:1.5rem; color:var(--color-teal); text-decoration:none; }
.nav-links{ display:none; gap:30px; list-style:none; }
.nav-links a{ text-decoration:none; font-weight:500; font-size:.92rem; position:relative; }
.nav-links a::after{ content:''; position:absolute; left:0; bottom:-4px; width:0; height:2px; background:var(--color-amber); 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-teal-dk); color:#f7f9f2; overflow:hidden; padding:126px 0 106px; }
.hero-glow{ position:absolute; top:-20%; right:-12%; width:60vw; height:60vw; max-width:720px; max-height:720px; background:radial-gradient(circle, rgba(201,154,62,.28) 0%, rgba(201,154,62,0) 70%); pointer-events:none; }
.hero-inner{ position:relative; max-width:720px; }
.hero h1{ font-size:clamp(2.5rem,6vw,4.1rem); }
.hero .tagline-mm{ font-family:var(--font-mm); font-size:1.12rem; opacity:.85; margin-top:14px; }
.hero p.sub{ margin-top:20px; font-size:1.08rem; opacity:.85; max-width:500px; }
.hero-actions{ display:flex; gap:16px; margin-top:36px; flex-wrap:wrap; }

/* Signature divider — a flowing wave line, evoking both a comb stroke
   through hair and the swirl of grinding thanaka on a kyauk pyin stone,
   a Myanmar beauty ritual */
.wave-divider{ width:100%; overflow:hidden; line-height:0; }
.wave-divider svg{ width:100%; height:28px; display:block; }
.wave-divider.on-alt{ background:var(--color-bg-alt); }
.wave-divider:not(.on-alt){ background:var(--color-bg); }

/* ---------- 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(140deg,var(--color-teal),var(--color-amber)); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.9); font-size:.85rem; text-align:center; padding:20px; }
@media(min-width:800px){ .about-grid{ grid-template-columns:1fr 1fr; } }

/* ---------- 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(22,66,60,.12); }
.card .icon{ width:46px; height:46px; border-radius:50%; background:var(--color-teal); color:var(--color-amber-soft); display:flex; align-items:center; justify-content:center; margin-bottom:16px; font-size:1.2rem; }
.card h3{ font-size:1.2rem; margin-bottom:8px; font-weight:400; }
.card p{ color:#4b5750; font-size:.95rem; }
.card .price{ margin-top:14px; font-weight:700; color:var(--color-teal); font-family:var(--font-body); }

/* ---------- 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-teal-dk); color:#f7f9f2; }
.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.05rem; }
.t-card .who{ margin-top:16px; font-weight:700; color:var(--color-amber-soft); font-size:.88rem; }

/* ---------- 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:600; 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-teal); }
.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:#e3ede4; color:#16423C; }
.form-msg.err{ background:#fbe7e4; color:#8a2c1d; }

.info-card{ background:var(--color-teal); color:#f7f9f2; 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:.85; }
.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,.12); }
.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); }
.social-row{ display:flex; gap:12px; margin-top:22px; }
.social-row a{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; text-decoration:none; color:#fff; font-size:1rem; transition:background .2s; }
.social-row a:hover{ background:var(--color-amber); color:#231a06; }

/* ---------- Footer ---------- */
footer{ background:var(--color-teal-dk); color:rgba(255,255,255,.72); 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:#f7f9f2; font-size:.92rem; 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,.72); font-size:.9rem; }
.footer-grid ul a:hover{ color:var(--color-amber-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:#f7f9f2; 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-amber); border:none; padding:10px 20px; border-radius:999px; font-weight:700; cursor:pointer; }
