:root{
  --green:#0d7045; --gold:#cfa64f; --ink:#1f2937; --muted:#6b7280;
  --bg:#ffffff; --light:#f8fafc; --radius:16px;
}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,Arial,sans-serif;background:var(--bg);color:var(--ink)}
a{color:var(--green);text-decoration:none}

/* Layout helpers */
.section{padding:72px 0}
.section.light{background:var(--light)}
.section-title{font-size:28px;font-weight:800;color:var(--green);margin:0 0 20px}
.wrap{max-width:1100px;margin:0 auto;padding:0 16px}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:var(--radius);padding:20px;box-shadow:0 2px 6px rgba(0,0,0,.08)}
.amount{font-weight:700;color:var(--green)}

/* Two-column container (services/about) */
.two{display:grid;gap:28px}
@media(min-width:900px){
  .two{
    grid-template-columns:1fr 1fr;
    align-items:stretch;     /* equal height columns */
  }
}

/* Buttons */
.btn{background:var(--green);color:#fff;padding:10px 20px;border-radius:999px;font-weight:700;text-decoration:none;display:inline-block;transition:all .2s}
.btn:hover{background:var(--gold);color:#fff}
.btn.btn-outline{background:transparent;border:2px solid #fff;color:#fff}
.btn.btn-outline:hover{background:var(--gold);border-color:var(--gold)}

/* Top Navigation */
.nav{position:sticky;top:0;z-index:50;background:#ffffffcc;border-bottom:1px solid #e2e8f0;backdrop-filter:blur(8px)}
.nav .wrap{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:12px 20px}
.brand{display:flex;align-items:center;gap:12px;font-weight:700;color:var(--green);font-size:1.1rem}
.logo{height:60px;width:auto}
.nav-links{display:flex;gap:22px;font-weight:700}
.nav-links a{color:var(--green)}

/* Hamburger (hidden on desktop, visible on mobile) */
.hamburger{
  position:relative;width:32px;height:24px;display:none;border:0;background:transparent;padding:0;margin:0;cursor:pointer;line-height:0;font-size:0;
}
.hamburger span,.hamburger::before,.hamburger::after{
  content:"";position:absolute;left:0;right:0;height:3px;background:var(--green);border-radius:2px;transition:background .2s;
}
.hamburger span{ top:50%; transform:translateY(-50%); }
.hamburger::before{ top:0; }
.hamburger::after{ bottom:0; }
.hamburger:hover span,.hamburger:hover::before,.hamburger:hover::after{ background:var(--gold); }

/* Mobile nav */
@media (max-width:900px){
  .hamburger{display:inline-block;}
  .nav-links{display:none;position:fixed;top:64px;left:0;right:0;background:#fff;border-bottom:1px solid #e5e7eb;flex-direction:column;padding:12px 16px}
  .nav-links.open{display:flex}
}
[id]{scroll-margin-top:90px}

/* Hero */
.hero{position:relative;min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;background:url('images/hero.jpg') center/cover no-repeat}
.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(13,112,69,.55),rgba(207,166,79,.55))}
.hero-content{position:relative;z-index:1;padding:40px}
.hero-logo{max-width:220px;margin:0 auto 20px;display:block}
.hero h1{font-size:clamp(32px,5vw,56px);margin:0 0 12px}
.hero p{font-size:1.2rem}
.hero-cta{display:flex;gap:12px;justify-content:center;margin-top:18px}
.hours{margin-top:10px;opacity:.95}

/* Service card media */
.card-media{margin-bottom:12px}
.card-img{
  width:100%;height:210px;object-fit:cover;border-radius:12px;
  border:1px solid #e5e7eb;box-shadow:0 2px 6px rgba(0,0,0,.06)
}
@media (min-width:1100px){.card-img{height:240px}}

/* Price list images */
.card-media img.card-img{max-height:220px;object-fit:cover}

/* Full-width spa banner and map */
.spa-banner{padding:0}
.spa-banner img{width:100%;height:420px;display:block;object-fit:cover}
@media (min-width:1100px){.spa-banner img{height:520px}}
.map-band{padding:0}
.map-embed{width:100%;border:0;height:420px;display:block}
@media (min-width:1100px){.map-embed{height:520px}}

/* ABOUT section (desktop defaults) */
.about-text{
  text-align:left;
  max-width:500px;
  margin:0 auto 0 0;
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.about-text ul{
  list-style:disc;
  display:block;
  text-align:left;
  margin:16px 0;
  padding-left:20px;
}

/* Larger, centered lotus */
.deco-lotus{
  display:block;
  margin:24px auto;      /* centered */
  max-width:240px;
  width:100%;
  height:auto;
  opacity:.95;
}

.about-cta{
  margin-top:auto;       /* push buttons to bottom on desktop */
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-start;
}

/* Right column media fills height (desktop) */
.media{display:flex;min-height:100%;}
.media > img{
  width:100%;
  height:100% !important;
  object-fit:cover;
  border-radius:16px;
  border:1px solid #e5e7eb;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}

/* Price grid layout */
.price-grid{
  display:grid;
  gap:28px;
}
@media(min-width:900px){
  .price-grid{
    grid-template-columns:1fr 1fr; /* two cards side by side */
    align-items:start;
  }
}
.price-grid .card{
  display:flex;
  flex-direction:column;
}

/* ----- Mobile alignment fixes for ABOUT ----- */
@media (max-width:899px){
  .about-text{
    text-align:center;       /* center heading & paragraphs */
    margin:0 auto;           /* center the column */
    align-items:center;      /* center children in the flex column */
    min-height:auto;         /* no forced equal height on mobile */
  }
  .about-text ul{
    text-align:left;         /* keep bullets readable */
    display:inline-block;    /* so it can center as a block */
    margin:16px auto;
    padding-left:20px;
  }
  .about-cta{
    margin-top:16px;         /* normal flow on mobile */
    justify-content:center;  /* center buttons */
  }
  .media > img{
    height:auto !important;  /* let image keep aspect on mobile */
  }
}

/* Footer */
.footer{border-top:1px solid #e5e7eb;padding:20px 0;text-align:center}
