/* ============================================
   BODYMINDEAL.ME — SHARED STYLESHEET
   Warm, earthy, peaceful, flowing
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --bg:       #F8F2E8;
  --bg2:      #EFE5D3;
  --bg3:      #E6D9C4;
  --terra:    #A85740;
  --gold:     #B8874A;
  --brown:    #5C3D22;
  --sage:     #6B7F62;
  --text:     #2E1F10;
  --muted:    #7A5C42;
  --border:   rgba(92,61,34,0.15);
  --white:    #FDFAF4;
  --nav-h:    72px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
}

h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); margin-bottom: 1.4rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

em, i { font-style: italic; color: var(--terra); }
p { color: var(--muted); margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--terra); text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3.5rem;
  background: rgba(248,242,232,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brown);
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terra); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 0.74rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--terra);
  color: var(--terra);
  background: transparent;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
}
.btn:hover { background: var(--terra); color: #fff; }

.btn-fill { background: var(--terra); color: #fff; }
.btn-fill:hover { background: var(--brown); border-color: var(--brown); }

.btn-sage { border-color: var(--sage); color: var(--sage); }
.btn-sage:hover { background: var(--sage); color: #fff; }

/* ── LAYOUT ── */
section { padding: 6rem 2rem; }
.container { max-width: 980px; margin: 0 auto; }
.container-sm { max-width: 680px; margin: 0 auto; }

.section-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.9rem;
  opacity: 0.85;
}

.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  opacity: 0.5;
  margin: 2rem 0;
}
.divider-center { margin: 2rem auto; }

/* ── IMAGE PLACEHOLDERS ── */
.img-ph {
  background: var(--bg2);
  border: 2px dashed rgba(92,61,34,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(184,135,74,0.07), rgba(168,87,64,0.07));
}
.img-ph .ph-icon { font-size: 2.2rem; opacity: 0.28; position: relative; }
.img-ph .ph-text {
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
  text-align: center;
  line-height: 1.6;
  padding: 0 1.5rem;
}

/* ── QUOTE BLOCK ── */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--white);
  margin: 2.5rem 0;
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 0.6rem;
  line-height: 1.5;
}
.pull-quote cite {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.65;
  font-style: normal;
}

/* ── TAGS ── */
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  background: rgba(168,87,64,0.08);
  border: 1px solid rgba(168,87,64,0.2);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.8rem;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: box-shadow 0.25s;
}
.card:hover { box-shadow: 0 6px 28px rgba(92,61,34,0.08); }

/* ── HERO BANDS ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background: var(--bg2);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
  background: var(--brown);
  color: rgba(248,242,232,0.75);
  text-align: center;
  padding: 3.5rem 2rem;
}
footer .footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--bg);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  display: block;
}
footer p { color: rgba(248,242,232,0.6); font-size: 0.82rem; margin-bottom: 0.4rem; }
footer a { color: rgba(248,242,232,0.75); transition: color 0.2s; }
footer a:hover { color: var(--bg); }
footer .footer-nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin: 1.5rem 0; }
footer .footer-nav a { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
footer .footer-copy { font-size: 0.7rem; opacity: 0.4; margin-top: 2rem; }
footer .disclaimer { font-size: 0.68rem; opacity: 0.38; max-width: 680px; margin: 1rem auto 0; line-height: 1.6; }

/* ── FADE IN ── */
.fade { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.65rem; }
  section { padding: 4rem 1.5rem; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
}
