/* Mind Body and God — shared styles */

:root {
  --ivory: #f7f2ea;
  --ivory-deep: #efe6d6;
  --ivory-warm: #fffdf8;
  --ink: #3c3033;
  --ink-soft: #6d5f5b;
  --ink-muted: #8a7c77;
  --gold: #b9975b;
  --gold-soft: #d4b87a;
  --plum: #5a4451;
  --plum-deep: #432f3c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  color: var(--ink);
  background: var(--ivory);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ===== NAVIGATION ===== */

.site-header {
  background: var(--ivory-warm);
  border-bottom: 1px solid rgba(185, 151, 91, 0.18);
  padding: 1.4rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 248, 0.92);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--plum);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-mark {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.15rem;
  font-family: 'Mulish', sans-serif;
}

.nav-links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 0.4rem 0;
  position: relative;
}

.nav-links a:hover { color: var(--plum); }

.nav-links a.active {
  color: var(--plum);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--plum);
}

/* ===== HERO ===== */

.hero {
  background: radial-gradient(ellipse at 50% 30%, var(--ivory-warm) 0%, var(--ivory) 50%, var(--ivory-deep) 100%);
  padding: 5.5rem 2rem 6rem;
  text-align: center;
  position: relative;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  animation: rise 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.triad {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.hero-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.7rem, 7vw, 4.4rem);
  line-height: 1.05;
  color: var(--plum);
  letter-spacing: 0.01em;
}

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 1.9rem auto;
  position: relative;
}

.divider::before {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  top: -2.5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 1px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.6vw, 2.05rem);
  color: var(--ink);
  margin-bottom: 1.15rem;
  line-height: 1.35;
}

.hero-sub {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ===== PAGE HEADER (for non-home pages) ===== */

.page-header {
  background: radial-gradient(ellipse at 50% 40%, var(--ivory-warm) 0%, var(--ivory) 70%);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
}

.page-eyebrow {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.1;
  color: var(--plum);
}

.page-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  color: var(--ink-soft);
  margin-top: 1.4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ===== CONTENT SECTIONS ===== */

.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: var(--ivory-warm);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-inner-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.section-eyebrow {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--plum);
  text-align: center;
  margin-bottom: 1rem;
}

.section-lede {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
  line-height: 1.55;
}

.prose {
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink);
}

.prose p { margin-bottom: 1.4rem; }

.prose p:last-child { margin-bottom: 0; }

.prose strong {
  font-weight: 600;
  color: var(--plum);
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--plum);
  text-align: center;
  padding: 2rem 1.5rem;
  margin: 2.5rem auto;
  max-width: 640px;
  border-top: 1px solid rgba(185, 151, 91, 0.3);
  border-bottom: 1px solid rgba(185, 151, 91, 0.3);
}

/* ===== CARDS / GRID ===== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
  margin-top: 2rem;
}

.card {
  background: var(--ivory-warm);
  border: 1px solid rgba(185, 151, 91, 0.22);
  border-radius: 4px;
  padding: 2.4rem 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(90, 68, 81, 0.08);
  border-color: var(--gold);
}

.card-eyebrow {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--plum);
  margin-bottom: 0.7rem;
}

.card-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.card-body {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
  flex-grow: 1;
  margin-bottom: 1.4rem;
}

.card-status {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: auto;
}

/* ===== BUTTONS ===== */

.btn {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum);
  text-decoration: none;
  padding: 0.85rem 2.1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  background: transparent;
}

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

.btn-solid {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--ivory-warm);
}

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

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */

.site-footer {
  background: var(--plum);
  color: var(--ivory);
  padding: 3.5rem 2rem 2rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ivory-warm);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.footer-nav a:hover { opacity: 1; }

.footer-fineprint {
  font-size: 0.78rem;
  color: var(--gold-soft);
  opacity: 0.75;
  border-top: 1px solid rgba(185, 151, 91, 0.25);
  padding-top: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.footer-fineprint a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold-soft);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 760px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ivory-warm);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(185, 151, 91, 0.2);
  }

  .nav-links.open { display: flex; }

  .hero { padding: 4rem 1.5rem 4.5rem; }
  .section { padding: 3.5rem 1.5rem; }
  .page-header { padding: 3.5rem 1.5rem 2.5rem; }
  .pull-quote { font-size: 1.2rem; padding: 1.5rem 1rem; }
  .triad { letter-spacing: 0.3em; font-size: 0.68rem; }
}
