/* ── mayachenwellness.com — shared stylesheet ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --cream:#faf7f2;
  --cream2:#f3ede3;
  --cream3:#ece4d6;
  --sage:#4a7a5a;
  --sage-light:#e6efe9;
  --sage-mid:#6a9e7a;
  --sage-dark:#335544;
  --amber:#b8702a;
  --amber-light:#fdf0e2;
  --dark:#1a1712;
  --dark2:#2d2920;
  --text:#2d2920;
  --text2:#6b6355;
  --text3:#a09688;
  --border:rgba(45,41,32,0.1);
  --border2:rgba(45,41,32,0.18);
  --r:10px;
}
html{scroll-behavior:smooth}
body{
  font-family:'Jost',sans-serif;
  background:var(--cream);
  color:var(--text);
  font-size:16px;
  line-height:1.7;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

/* ── ANNOUNCEMENT BAR ── */
.ann-bar{
  background:var(--dark);
  color:#c8b99a;
  text-align:center;
  padding:9px 20px;
  font-size:12.5px;
  letter-spacing:0.04em;
}
.ann-bar strong{color:#e8d9c0;font-weight:500}

/* ── NAV ── */
nav{
  background:var(--cream);
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:100;
}
.nav-inner{
  max-width:1200px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 32px;height:68px;
}
.nav-logo{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:600;
  color:var(--dark);
  display:flex;align-items:center;gap:10px;
}
.nav-logo-dot{
  width:9px;height:9px;
  background:var(--sage);border-radius:50%;flex-shrink:0;
}
.nav-links{display:flex;gap:28px;align-items:center}
.nav-links a{
  font-size:13.5px;font-weight:400;letter-spacing:0.03em;
  color:var(--text2);
  transition:color 0.2s;
}
.nav-links a:hover,.nav-active{color:var(--sage)!important;font-weight:500}
.nav-cta{
  background:var(--sage);
  color:#fff!important;
  padding:9px 22px;
  border-radius:100px;
  font-size:13px!important;
  font-weight:500!important;
  letter-spacing:0.02em!important;
  transition:background 0.2s!important;
}
.nav-cta:hover{background:var(--sage-mid)!important}

/* ── SECTION LAYOUT ── */
.section{padding:80px 32px}
.container{max-width:1200px;margin:0 auto}
.section-eyebrow{
  font-size:11.5px;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--sage);font-weight:500;margin-bottom:10px;
}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(32px,4vw,48px);
  font-weight:600;color:var(--dark);
  line-height:1.2;margin-bottom:14px;
}
.section-title em{font-style:italic;color:var(--sage)}
.section-sub{font-size:16px;color:var(--text2);max-width:500px;line-height:1.75;margin-bottom:48px}

/* ── PAGE HEADER (dark) ── */
.page-header{
  background:var(--dark2);
  padding:64px 32px 56px;
  border-bottom:1px solid rgba(255,255,255,0.06);
  position:relative;overflow:hidden;
}
.page-header::before{
  content:'';position:absolute;inset:0;
  background-image:
    radial-gradient(circle at 15% 70%,rgba(74,122,90,0.18) 0%,transparent 55%),
    radial-gradient(circle at 85% 20%,rgba(184,112,42,0.09) 0%,transparent 50%);
  pointer-events:none;
}
.page-header-inner{max-width:1200px;margin:0 auto;position:relative;z-index:1}
.page-header .section-eyebrow{color:#8ec49e}
.page-header h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(38px,5vw,62px);
  font-weight:600;color:#f0e8da;
  line-height:1.1;margin-bottom:14px;
}
.page-header h1 em{font-style:italic;color:#8ec49e}
.page-header p{color:#9a9082;font-size:16px;font-weight:300;max-width:520px;line-height:1.8}
.page-header-meta{
  display:flex;gap:36px;margin-top:32px;padding-top:28px;
  border-top:1px solid rgba(255,255,255,0.07);flex-wrap:wrap;
}
.ph-stat-num{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:600;color:#e0d4be;line-height:1}
.ph-stat-label{font-size:11.5px;color:#7a7060;margin-top:3px}

/* ── NEWSLETTER ── */
.newsletter-section{
  background:var(--sage);
  text-align:center;
  padding:72px 32px;
}
.newsletter-section .section-eyebrow{color:rgba(255,255,255,0.6)}
.newsletter-section .section-title{color:#fff;margin-bottom:10px}
.newsletter-section .section-sub{color:rgba(255,255,255,0.75);margin:0 auto 36px;max-width:440px}
.newsletter-form{
  display:flex;gap:12px;max-width:460px;margin:0 auto;
  flex-wrap:wrap;justify-content:center;
}
.newsletter-form input{
  flex:1;min-width:220px;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.3);
  border-radius:100px;
  padding:13px 22px;
  font-family:'Jost',sans-serif;
  font-size:15px;color:#fff;outline:none;
  transition:border-color 0.2s;
}
.newsletter-form input::placeholder{color:rgba(255,255,255,0.55)}
.newsletter-form input:focus{border-color:rgba(255,255,255,0.7)}
.btn-newsletter{
  background:#fff;color:var(--sage);
  border:none;border-radius:100px;
  padding:13px 28px;
  font-family:'Jost',sans-serif;
  font-size:15px;font-weight:500;
  cursor:pointer;
  transition:background 0.2s;
  white-space:nowrap;
}
.btn-newsletter:hover{background:var(--cream)}

/* ── FOOTER ── */
footer{
  background:var(--dark);
  color:#7a7060;
  padding:56px 32px 32px;
}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-top{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;margin-bottom:48px;
}
.footer-brand{
  font-family:'Cormorant Garamond',serif;
  font-size:20px;font-weight:600;color:#e8d9c0;
  margin-bottom:12px;
  display:flex;align-items:center;gap:8px;
}
.footer-brand-dot{width:7px;height:7px;background:var(--sage);border-radius:50%}
.footer-desc{font-size:13.5px;line-height:1.75;font-weight:300;max-width:260px}
.footer-col h4{
  font-size:12px;letter-spacing:0.1em;text-transform:uppercase;
  color:#c8b99a;font-weight:500;margin-bottom:16px;
}
.footer-col a{
  display:block;font-size:13.5px;color:#7a7060;
  margin-bottom:8px;font-weight:300;
  transition:color 0.2s;
}
.footer-col a:hover{color:#c8b99a}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.06);
  padding-top:24px;
  display:flex;justify-content:space-between;align-items:flex-start;
  flex-wrap:wrap;gap:12px;
}
.footer-legal{font-size:12px;line-height:1.65;max-width:600px}
.footer-mono{
  font-family:'DM Mono',monospace;
  font-size:11px;color:#4a4438;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}
.fade-up{animation:fadeUp 0.6s ease both}
.fade-up-1{animation-delay:0.1s}
.fade-up-2{animation-delay:0.2s}
.fade-up-3{animation-delay:0.3s}
.fade-up-4{animation-delay:0.4s}
.fade-up-5{animation-delay:0.5s}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .footer-top{grid-template-columns:1fr 1fr;gap:32px}
}
@media(max-width:600px){
  .nav-links{display:none}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
}
