/* ── SHARED STYLES — Yoga Sunshine ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sun: #D4A84B;
  --sun-light: #FBF6E9;
  --warm: #B8763A;
  --roma: #F0BC42;
  --sage: #6A9B72;
  --sage-mid: #4E7C56;
  --sage-dark: #2E5234;
  --sage-light: #EBF3EC;
  --sage-pale: #F3F8F3;
  --earth: #6B5B4E;
  --cream: #FAFDF8;
  --text: #1E2C20;
  --text-mid: #607464;
  --text-light: #9BB09E;
  --white: #FFFFFF;
  --border: rgba(74,100,78,0.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 72px;
  background: var(--roma);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.15); }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo svg { height: 48px; width: 48px; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); border-bottom: 2px solid var(--sage-dark); padding-bottom: 2px; }
.nav-links .book-link a {
  color: #fff;
  font-weight: 600;
  background: var(--sage-dark);
  padding: 0.45rem 1.1rem;
  border: none;
  border-bottom: none;
  transition: background 0.2s;
}
.nav-links .book-link a:hover { background: var(--text); color: #fff; }

.nav-mobile-toggle { display: none; cursor: pointer; background: none; border: none; }
.nav-mobile-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--sage-dark); margin: 5px 0; transition: 0.3s;
}

/* ── PAGE HEADER (non-home pages) ── */
.page-header {
  padding-top: 72px;
  background: var(--sage-dark);
  padding-bottom: 3rem;
  padding-left: 4vw;
  padding-right: 4vw;
  text-align: left;
}
.page-header-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(235,248,237,0.6);
  font-weight: 400;
  margin-bottom: 0.6rem;
  padding-top: 2.5rem;
}
.page-header h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ── SECTION BASE ── */
section { padding: 5rem 4vw; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-mid);
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--sage-mid); }
.section-body {
  font-size: 1rem;
  color: var(--earth);
  max-width: 560px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--sage-mid);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--sage);
  color: var(--sage-mid);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--sage-dark); color: var(--sage-dark); transform: translateY(-1px); }

.btn-light {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--white);
  color: var(--sage-mid);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-light:hover { background: var(--text); color: var(--white); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  background: var(--sage-dark);
  color: rgba(243,248,243,0.55);
  padding: 3.5rem 4vw;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243,248,243,0.9);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  text-decoration: none;
  font-size: 0.85rem;
  color: rgba(243,248,243,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(243,248,243,0.9); }
.footer-contact { font-size: 0.85rem; line-height: 2; }
.footer-contact a { color: var(--sage-light); text-decoration: none; }
.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-social { display: flex; gap: 1.2rem; }
.footer-social a { color: rgba(243,248,243,0.45); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-social a:hover { color: var(--sun); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--roma);
    padding: 2rem 4vw 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    gap: 1.5rem;
  }
  .nav-mobile-toggle { display: block; }
  .footer-inner { grid-template-columns: 1fr; }
}
