/*
Theme Name: Moonlit Mindfulness 13
Theme URI: https://moonlitmindfulness.com
Description: Official theme for Moonlit Mindfulness 13 — Yoga with B. Warm, spiritual, intentional. Every phase of you is welcome here.
Version: 1.0
Author: Brittany Michelle
Text Domain: moonlit-mindfulness-13
*/

/* ──────────────────────────────────────────────────────────────
   Moonlit Mindfulness 13 — site stylesheet
   Warm. Spiritual. Professional. Intentional.
   ────────────────────────────────────────────────────────────── */

:root {
  --forest:     #1f3a2e;
  --forest-2:   #2a4a3b;
  --sage:       #8a9a82;
  --sage-soft:  #b6bfae;
  --honey:      #b8863d;
  --honey-soft: #d4a960;
  --parchment:  #efe3c8;
  --parch-deep: #e2d3b1;
  --cream:      #fbf6ea;
  --cream-warm: #f6eed9;
  --plum:       #5c3a4a;
  --bronze:     #8b6a3f;
  --ink:        #2a2520;
  --ink-soft:   #5a4f44;

  --display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --body:    "Karla", "Inter", system-ui, -apple-system, sans-serif;

  --measure: 64ch;
  --pad-x: clamp(24px, 5vw, 80px);
  --section-y: clamp(64px, 9vw, 128px);
}

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

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(circle at 20% 15%, rgba(184,134,61,0.045), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(31,58,46,0.04), transparent 55%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.42 0 0 0 0 0.22 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--forest); text-decoration: none; border-bottom: 1px solid rgba(31,58,46,0.25); transition: border-color .2s, color .2s; }
a:hover { color: var(--honey); border-bottom-color: var(--honey); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.005em;
  line-height: 1.1;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); }
h4 { font-size: 1.2rem; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--body); font-weight: 600; color: var(--bronze); }

p { margin: 0 0 1em; max-width: var(--measure); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin: 0 0 1.4em;
}

.script-italic { font-style: italic; font-weight: 400; }

/* ── Nav ────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,234,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31,58,46,0.10);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad-x);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  border: none;
}
.brand-mark {
  width: 44px; height: 44px;
  color: var(--forest);
  flex: 0 0 44px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--forest);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-sub {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 2px;
}
.nav-links { display: flex; gap: clamp(12px, 1.6vw, 24px); align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  border: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: 0;
  height: 1px; background: var(--honey);
  transition: left .25s, right .25s;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { left: 0; right: 0; }
.nav-links a[aria-current="page"] { color: var(--honey); }

/* ── Layout helpers ─────────────────────────────────────────── */
main { display: block; }
section { padding: var(--section-y) var(--pad-x); }
.container { max-width: 1180px; margin: 0 auto; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ── Section divider: fleur-de-lis ─────────────────────────── */
.fleur-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 8px var(--pad-x);
  max-width: 900px;
  color: var(--honey);
}
.fleur-divider .rule {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,134,61,0.45), transparent);
}
.fleur-divider svg { width: 34px; height: 44px; flex: 0 0 auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 8px 22px -10px rgba(31,58,46,0.5);
  white-space: nowrap;
}
.btn:hover { background: var(--forest-2); transform: translateY(-1px); color: var(--cream); border: none; }
.btn--honey { background: var(--honey); color: var(--cream); }
.btn--honey:hover { background: var(--honey-soft); color: var(--cream); }
.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(31,58,46,0.45);
  box-shadow: none;
}
.btn--outline:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(72px, 11vw, 160px) var(--pad-x) clamp(60px, 9vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.hero h1 .em { font-style: italic; color: var(--honey); font-weight: 400; }
.hero-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  color: var(--ink-soft);
  margin-top: 14px;
  max-width: 38ch;
}
.hero-portrait-wrap {
  position: relative;
  justify-self: end;
  padding: 18px;
}
.hero-portrait-wrap::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(184,134,61,0.5);
  transform: rotate(-3deg);
  pointer-events: none;
}
.hero-portrait {
  width: clamp(220px, 28vw, 320px);
  aspect-ratio: 4/5;
  background: var(--parch-deep);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 50px -30px rgba(31,58,46,0.4);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95) contrast(0.97); }
.hero-caption {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--bronze);
  margin-top: 14px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Moon phase row ─────────────────────────────────────────── */
.moonphases {
  display: flex; gap: clamp(18px, 3.5vw, 42px);
  align-items: center; justify-content: center;
  margin: clamp(40px, 6vw, 80px) auto 0;
  opacity: 0.85;
}
.moonphases .label {
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
}
.moon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--forest);
  position: relative;
  flex: 0 0 auto;
}
.moon--new { background: transparent; border: 1px solid var(--forest); }
.moon--waxing-crescent { background: var(--cream); box-shadow: inset -8px 0 0 0 var(--forest); }
.moon--first { background: linear-gradient(90deg, var(--cream) 50%, var(--forest) 50%); }
.moon--waxing-gibbous { background: var(--forest); box-shadow: inset 8px 0 0 0 var(--cream); }
.moon--full { background: var(--forest); }
.moon--waning-gibbous { background: var(--forest); box-shadow: inset -8px 0 0 0 var(--cream); }
.moon--last { background: linear-gradient(90deg, var(--forest) 50%, var(--cream) 50%); }
.moon--waning-crescent { background: var(--cream); box-shadow: inset 8px 0 0 0 var(--forest); }

/* ── Welcome / bio blurb ────────────────────────────────────── */
.welcome {
  background: var(--cream-warm);
  border-top: 1px solid rgba(184,134,61,0.2);
  border-bottom: 1px solid rgba(184,134,61,0.2);
}
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.welcome-photo {
  position: relative;
  max-width: 320px;
  justify-self: center;
}
.welcome-photo .frame {
  aspect-ratio: 4/5;
  background: var(--parch-deep);
  border: 6px solid var(--cream);
  box-shadow: 0 30px 60px -30px rgba(31,58,46,0.4);
  position: relative;
  overflow: hidden;
}
.welcome-photo .frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}

/* ── Card grids ─────────────────────────────────────────────── */
.cards {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1180px; margin: 0 auto;
}
.card {
  background: var(--cream-warm);
  border: 1px solid rgba(31,58,46,0.10);
  padding: 28px 28px 30px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 30px 50px -32px rgba(31,58,46,0.4); }
.card .meta {
  font-family: var(--body);
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--bronze);
  font-weight: 600;
}
.card h3 { margin: 0; }
.card .location {
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: -6px 0 4px;
}
.card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.card .card-cta {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--forest);
  border: none;
  align-self: flex-start;
}
.card .card-cta:hover { color: var(--honey); }
.card .card-cta .arrow { transition: transform .2s; }
.card .card-cta:hover .arrow { transform: translateX(4px); }

/* Banner over cards */
.featured-banner {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(40px, 5vw, 64px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.featured-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(184,134,61,0.18), transparent 55%);
  pointer-events: none;
}
.featured-banner .inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; }
.featured-banner h2 { color: var(--cream-warm); }
.featured-banner h2 em { color: var(--honey-soft); font-style: italic; }
.featured-banner p { color: rgba(251,246,234,0.85); margin-left: auto; margin-right: auto; }
.featured-banner .eyebrow { color: var(--honey-soft); }
.featured-banner .moonphases { margin-top: 28px; }
.featured-banner .moon { background: var(--cream); }
.featured-banner .moon--new { background: transparent; border-color: var(--cream); }
.featured-banner .moon--waxing-crescent { box-shadow: inset -8px 0 0 0 var(--cream); background: var(--forest); }
.featured-banner .moon--first { background: linear-gradient(90deg, var(--forest) 50%, var(--cream) 50%); }
.featured-banner .moon--waxing-gibbous { background: var(--cream); box-shadow: inset 8px 0 0 0 var(--forest); }
.featured-banner .moon--full { background: var(--cream); }
.featured-banner .moon--waning-gibbous { background: var(--cream); box-shadow: inset -8px 0 0 0 var(--forest); }
.featured-banner .moon--last { background: linear-gradient(90deg, var(--cream) 50%, var(--forest) 50%); }
.featured-banner .moon--waning-crescent { background: var(--forest); box-shadow: inset 8px 0 0 0 var(--cream); }
.featured-banner .label { color: var(--honey-soft); }

/* Event cards */
.events-grid { margin-top: clamp(32px, 5vw, 48px); }
.event-card {
  background: var(--cream-warm);
  color: var(--ink);
  padding: 24px 24px 26px;
  border: 1px solid rgba(184,134,61,0.3);
  text-align: left;
  display: flex; flex-direction: column; gap: 8px;
}
.event-card .venue { color: var(--bronze); font-family: var(--display); font-style: italic; font-size: 1.05rem; }
.event-card h3 { color: var(--forest); margin: 4px 0 8px; font-size: 1.35rem; }
.event-card .card-cta { color: var(--forest); margin-top: 10px; }

/* ── About page sections ───────────────────────────────────── */
.story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
  max-width: 1080px; margin: 0 auto;
}
.story--reverse { grid-template-columns: 1.15fr 0.85fr; }
.story--reverse .story-photo { order: 2; }
.story h2 em { color: var(--honey); font-style: italic; }
.story-photo {
  position: relative;
  max-width: 340px;
}
.story-photo .frame {
  aspect-ratio: 4/5;
  background: var(--parch-deep);
  border: 6px solid var(--cream);
  box-shadow: 0 30px 60px -30px rgba(31,58,46,0.4);
  overflow: hidden;
  position: relative;
}
.story-photo .frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.story-caption {
  font-family: var(--display);
  font-style: italic;
  color: var(--bronze);
  font-size: 0.95rem;
  margin-top: 12px;
  text-align: center;
}

/* Pull quote */
.pullquote {
  max-width: 880px; margin: 0 auto;
  text-align: center;
  position: relative;
  padding: clamp(40px, 5vw, 60px) clamp(24px, 4vw, 60px);
}
.pullquote::before, .pullquote::after {
  content: "\275D";
  font-family: var(--display);
  position: absolute; font-size: 6rem; line-height: 1; color: var(--honey);
  opacity: 0.5;
}
.pullquote::before { top: -6px; left: -4px; }
.pullquote::after { content: "\275E"; bottom: -36px; right: -4px; }
.pullquote p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  line-height: 1.3;
  color: var(--forest);
  margin: 0 auto;
  max-width: none;
}

/* ── Page header (sub-pages) ───────────────────────────────── */
.page-header {
  padding: clamp(60px, 8vw, 110px) var(--pad-x) clamp(30px, 4vw, 50px);
  text-align: center;
}
.page-header h1 { margin-bottom: 0.3em; }
.page-header h1 em { font-style: italic; color: var(--honey); font-weight: 400; }
.page-header .lede {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--ink-soft);
  max-width: 50ch; margin: 0 auto;
}

/* ── Blog cards ─────────────────────────────────────────────── */
.blog-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  max-width: 1180px; margin: 0 auto;
}
.post-card {
  background: var(--cream-warm);
  border: 1px solid rgba(31,58,46,0.10);
  display: flex; flex-direction: column;
}
.post-card .post-img {
  aspect-ratio: 5/3;
  background: repeating-linear-gradient(45deg, var(--parchment) 0 12px, var(--parch-deep) 12px 14px);
  display: flex; align-items: center; justify-content: center;
  color: var(--bronze);
  position: relative;
  overflow: hidden;
}
.post-card .post-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card .post-img svg { width: 38px; height: 48px; opacity: 0.65; color: var(--honey); }
.post-card .post-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.post-card .date {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}
.post-card h3 { margin: 0; font-size: 1.55rem; }
.post-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0 0 8px; }
.post-card a { border: none; color: inherit; }
.post-card a:hover h3 { color: var(--honey); }

/* ── Blog post (reading) ──────────────────────────────────── */
.post-hero {
  text-align: center;
  padding: clamp(60px, 8vw, 110px) var(--pad-x) clamp(30px, 4vw, 50px);
  max-width: 820px; margin: 0 auto;
}
.post-hero .breadcrumb {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin: 0 0 28px;
}
.post-hero .breadcrumb a { color: var(--bronze); border: none; }
.post-hero .breadcrumb a:hover { color: var(--honey); }
.post-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
.post-hero h1 em { font-style: italic; color: var(--honey); font-weight: 400; }
.post-hero .post-meta {
  font-family: var(--body);
  font-size: 0.72rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink-soft);
  margin-top: 18px;
}
.post-body-wrap {
  max-width: 680px; margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) var(--pad-x) clamp(60px, 8vw, 100px);
}
.post-body-wrap p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1.2em;
  max-width: none;
}
.post-body-wrap p.lede-p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.45;
  color: var(--forest);
  margin: 0 0 1.4em;
}
.post-body-wrap h2 {
  font-size: 1.7rem;
  margin: 1.8em 0 0.6em;
}
.post-body-wrap blockquote {
  margin: 1.8em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--honey);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--forest);
}
.post-body-wrap blockquote p { font-family: inherit; font-style: inherit; font-size: inherit; line-height: inherit; color: inherit; }
.post-body-wrap em { color: var(--bronze); }
.post-body-wrap .signoff {
  margin-top: 2.4em;
  font-family: var(--display);
  font-style: italic;
  color: var(--bronze);
  font-size: 1.1rem;
}
.post-end {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  margin: 0 auto 60px;
  color: var(--honey);
}
.post-end .rule { flex: 0 0 60px; height: 1px; background: linear-gradient(to right, transparent, rgba(184,134,61,0.5), transparent); }
.post-end svg { width: 30px; height: 40px; }

/* ── Editorial image ──────────────────────────────────────── */
.editorial-image {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.editorial-image figure { margin: 0; position: relative; padding: 20px; }
.editorial-image figure::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid rgba(184,134,61,0.4);
  pointer-events: none;
}
.editorial-image img {
  width: 100%; height: auto;
  display: block;
  box-shadow: 0 40px 70px -40px rgba(31,58,46,0.5);
}
.editorial-image figcaption {
  margin-top: 18px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--bronze);
  font-size: 1.05rem;
}

/* ── Quick nav (home) ──────────────────────────────────────── */
.quicknav {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}
.quicknav .eyebrow { color: var(--honey-soft); }
.quicknav h2 { color: var(--cream-warm); font-style: italic; font-weight: 400; }
.quicknav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  max-width: 1080px; margin: 36px auto 0;
  background: rgba(184,134,61,0.4);
  border: 1px solid rgba(184,134,61,0.4);
}
.quicknav-grid a {
  background: var(--forest);
  padding: 30px 18px;
  color: var(--cream);
  border: none;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: background .25s;
  font-family: var(--display);
  font-size: 1.4rem;
}
.quicknav-grid a small {
  font-family: var(--body);
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--honey-soft);
  font-weight: 600;
}
.quicknav-grid a:hover { background: var(--forest-2); color: var(--honey-soft); }

/* ── Newsletter strip ──────────────────────────────────────── */
.newsletter {
  text-align: center;
  background: var(--cream-warm);
}
.newsletter h2 { font-style: italic; }
.newsletter h2 em { color: var(--honey); font-style: italic; }
.newsletter p { margin: 0 auto 24px; }

/* ── Note callout ──────────────────────────────────────────── */
.note {
  max-width: 860px; margin: 0 auto;
  padding: 24px 28px;
  background: rgba(184,134,61,0.08);
  border-left: 3px solid var(--honey);
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

/* ── Contact buttons grid ──────────────────────────────────── */
.contact-actions {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px 0 0;
}

/* ── Footer with embossed bee watermark ───────────────────── */
.site-footer {
  position: relative;
  padding: clamp(70px, 9vw, 120px) var(--pad-x) 40px;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(184,134,61,0.06), transparent 60%),
    var(--parchment);
  color: var(--ink-soft);
  overflow: hidden;
  border-top: 1px solid rgba(184,134,61,0.25);
}
.footer-emboss {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 36vw, 420px);
  pointer-events: none;
  color: rgba(139,106,63,0.22);
  filter:
    drop-shadow(0 1px 0 rgba(255,250,232,0.7))
    drop-shadow(0 -1px 0 rgba(70,50,25,0.18));
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1180px; margin: 0 auto;
}
.footer-col { font-size: 0.9rem; }
.footer-col p { margin: 0; }
.footer-col h4 { color: var(--forest); margin-bottom: 10px; font-size: 0.75rem; letter-spacing: 0.22em; }
.footer-center { text-align: center; }
.footer-brand-name {
  font-family: var(--display); font-size: 1.3rem; color: var(--forest);
  letter-spacing: 0.02em;
}
.footer-brand-sub {
  font-family: var(--body); font-size: 0.7rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--bronze); margin-top: 4px;
}
.footer-col.right { text-align: right; }
.footer-col a { color: var(--forest); border-bottom-color: rgba(31,58,46,0.2); }
.footer-base {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 60px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(184,134,61,0.3);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--body);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze);
}
.footer-base .seal { font-family: var(--display); font-style: italic; text-transform: none; letter-spacing: 0.02em; font-size: 0.95rem; color: var(--ink-soft); }

/* ── Numerology card ────────────────────────────────────────── */
.numerology-card {
  background: var(--forest);
  border: 6px solid var(--cream);
  box-shadow: 0 30px 60px -30px rgba(31,58,46,0.4);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.numerology-inner {
  text-align: center;
  color: var(--cream-warm);
  padding: 24px;
}
.numerology-inner .num-label {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--honey-soft);
  text-transform: uppercase;
}
.numerology-inner .num-digit {
  font-family: var(--display);
  font-style: italic;
  font-size: 7rem;
  line-height: 1;
  margin: 18px 0;
}
.numerology-inner .num-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--honey-soft);
}

/* ── Thoughts page hub card ─────────────────────────────────── */
.thoughts-hub {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.thoughts-hub-bee {
  position: absolute;
  top: -30px; right: -30px;
  opacity: 0.18;
  color: var(--honey-soft);
  width: 180px;
}
.thoughts-hub h2 { color: var(--cream-warm); position: relative; }
.thoughts-hub h2 em { color: var(--honey-soft); font-style: italic; }
.thoughts-hub p { color: rgba(251,246,234,0.88); position: relative; }
.thoughts-hub .eyebrow { color: var(--honey-soft); position: relative; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 880px) {
  .hero-grid, .welcome-grid, .story, .story--reverse { grid-template-columns: 1fr; }
  .story--reverse .story-photo { order: 0; }
  .hero-portrait-wrap { justify-self: start; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-col.right { text-align: center; }
  .nav { flex-wrap: wrap; }
  .nav-links { width: 100%; justify-content: center; }
}
@media (max-width: 560px) {
  .moonphases .label { display: none; }
  .contact-grid-2 { grid-template-columns: 1fr !important; }
}

/* ── WordPress default element resets ─────────────────────── */
.wp-block-image { margin: 1.5em 0; }
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-family: var(--display); font-style: italic; color: var(--bronze); font-size: 0.95rem; text-align: center; margin-top: 8px; }
