/* ═══════════════════════════════════════════════════════════════════
   Marcelle Pacheco — Global CSS
   Unified from all 6 pages. Single source of truth.
   ═══════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────────── */
:root {
  --ivory:      #FAF7F2;
  --sand:       #E8DED2;
  --clay:       #C9A38E;
  --rose-brown: #B08974;
  --sage:       #7A8A77;
  --charcoal:   #5A5A5A;
  --charcoal-dk:#3A3A3A;
  --charcoal-lt:#8A8A8A;
  --white:      #ffffff;
  --nav-h:      80px;
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: .01em; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center; justify-content: space-between; padding: 0 5%;
  background: rgba(250,247,242,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .4s, box-shadow .4s;
}
nav.scrolled { border-color: var(--sand); box-shadow: 0 2px 24px rgba(90,90,90,.07); }
.nav-logo {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500;
  color: var(--charcoal); text-decoration: none; letter-spacing: .08em;
  text-transform: uppercase; line-height: 1.2;
}
.nav-logo span {
  display: block; font-size: .6rem; font-family: 'Jost', sans-serif; font-weight: 300;
  letter-spacing: .25em; color: var(--rose-brown); text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: .9rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none; position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--clay); transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose-brown); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 10px 24px; border: 1px solid var(--rose-brown);
  color: var(--rose-brown) !important; border-radius: 2px;
  font-size: .85rem !important; letter-spacing: .2em !important;
  transition: background .3s, color .3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--rose-brown) !important; color: var(--white) !important; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 1px; background: var(--charcoal); display: block; transition: all .3s; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--ivory); padding: 2rem 5%; border-bottom: 1px solid var(--sand); z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 1rem 0; font-size: .8rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--charcoal); text-decoration: none;
  border-bottom: 1px solid var(--sand);
}
.mobile-menu a:last-child { border: none; }

/* ── SHARED UTILS ────────────────────────────────────────────────── */
.eyebrow {
  font-size: .85rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--rose-brown); font-weight: 400; margin-bottom: 1.25rem; display: block;
}
.section-title { font-size: clamp(2rem,3.5vw,3.2rem); line-height: 1.1; color: var(--charcoal); margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--rose-brown); }
.body-text { font-size: 1.2rem; line-height: 1.95; color: var(--charcoal-lt); font-weight: 300; }
.breadcrumb {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 2.5rem; display: flex; align-items: center; gap: .75rem;
}
.breadcrumb a { color: var(--clay); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* ── REVEAL ANIMATION ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; padding: 14px 36px; background: var(--rose-brown); color: var(--white);
  text-decoration: none; font-size: .85rem; letter-spacing: .2em; text-transform: uppercase;
  border-radius: 2px; border: 1px solid var(--rose-brown); transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; padding: 14px 36px; border: 1px solid var(--clay); color: var(--charcoal);
  text-decoration: none; font-size: .85rem; letter-spacing: .2em; text-transform: uppercase;
  border-radius: 2px; transition: all .3s;
}
.btn-outline:hover { background: var(--sand); transform: translateY(-2px); }
.btn-white {
  display: block; padding: 14px 36px; background: var(--white); color: var(--sage);
  text-decoration: none; font-size: .85rem; letter-spacing: .2em; text-transform: uppercase;
  border-radius: 2px; text-align: center; transition: background .3s, transform .2s;
}
.btn-white:hover { background: var(--sand); transform: translateY(-2px); }
.btn-ghost-white {
  display: block; padding: 14px 36px; border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85); text-decoration: none; font-size: .85rem; letter-spacing: .2em;
  text-transform: uppercase; border-radius: 2px; text-align: center; transition: all .3s;
}
.btn-ghost-white:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer { background: var(--charcoal-dk); padding: 4rem 8% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-brand p { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,.45); font-weight: 300; margin-top: 1.25rem; max-width: 260px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--white); letter-spacing: .08em; text-transform: uppercase; line-height: 1.3; }
.footer-logo small { display: block; font-size: .6rem; letter-spacing: .25em; color: var(--clay); margin-top: 3px; font-family: 'Jost', sans-serif; }
.footer-col h4 { font-size: 1rem; letter-spacing: .25em; text-transform: uppercase; color: var(--clay); font-weight: 500; margin-bottom: 1.5rem; font-family: 'Jost', sans-serif; }
.footer-col a { display: block; font-size: .92rem; color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: .75rem; transition: color .3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p, .footer-bottom a { font-size: .75rem; color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.65); }

/* ── FORMS ───────────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 1rem; letter-spacing: .22em; text-transform: uppercase; color: var(--charcoal-lt); margin-bottom: .5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1px solid var(--sand); background: transparent;
  color: var(--charcoal); font-family: 'Jost', sans-serif; font-size: 1rem; font-weight: 300;
  border-radius: 2px; outline: none; transition: border-color .3s, box-shadow .3s; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clay); box-shadow: 0 0 0 3px rgba(201,163,142,.12); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(90,90,90,.35); }
.consent-row { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.75rem; }
.consent-row input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--rose-brown); cursor: pointer; }
.consent-row label { font-size: .8rem; color: var(--charcoal-lt); line-height: 1.65; font-weight: 300; cursor: pointer; }
.consent-row a { color: var(--rose-brown); text-decoration: none; }
.submit-btn {
  width: 100%; padding: 15px; background: var(--rose-brown); color: var(--white);
  border: none; font-family: 'Jost', sans-serif; font-size: .7rem; letter-spacing: .25em;
  text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background .3s, transform .2s;
}
.submit-btn:hover { background: var(--sage); transform: translateY(-1px); }
.form-footer-note { text-align: center; margin-top: 1rem; font-size: .75rem; color: var(--charcoal-lt); }
.field-hint { display: flex; justify-content: flex-end; margin-top: .35rem; font-size: .65rem; color: var(--charcoal-lt); }

/* ── PROGRESS BAR ────────────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: var(--nav-h); left: 0; z-index: 99;
  height: 2px; width: 0%; background: linear-gradient(to right, var(--clay), var(--rose-brown));
  transition: width .1s linear;
}

/* ══════════════════════════════════════════════════════════════════
   HOME PAGE
   ══════════════════════════════════════════════════════════════════ */
.hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; padding-top: var(--nav-h); }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 8% 6% 8% 8%; }
.hero-eyebrow { font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; color: var(--rose-brown); font-weight: 400; margin-bottom: 2rem; opacity: 0; animation: fadeUp .9s .2s forwards; }
.hero h1 { font-size: clamp(3rem,5vw,5.5rem); line-height: 1.05; color: var(--charcoal); margin-bottom: 2rem; opacity: 0; animation: fadeUp .9s .4s forwards; }
.hero h1 em { font-style: italic; color: var(--rose-brown); }
.hero-sub { font-size: 1.2rem; line-height: 1.8; color: var(--charcoal-lt); max-width: 400px; margin-bottom: 3rem; font-weight: 300; opacity: 0; animation: fadeUp .9s .6s forwards; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; opacity: 0; animation: fadeUp .9s .8s forwards; }
.hero-right { position: relative; overflow: hidden; background: var(--sand); }
.hero-right::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--sand) 0%, var(--clay) 60%, var(--sage) 100%); opacity: .35; z-index: 1; }
.hero-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 8rem; color: rgba(176,137,116,.2); }
.hero-quote { position: absolute; bottom: 2.5rem; left: 2.5rem; right: 2.5rem; z-index: 2; opacity: 0; animation: fadeUp 1s 1s forwards; }
.hero-quote blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--white); line-height: 1.5; text-shadow: 0 1px 8px rgba(0,0,0,.3); }
.intro-strip { background: var(--sage); padding: 2rem 8%; display: flex; align-items: center; justify-content: center; gap: 4rem; }
.intro-strip p { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--white); letter-spacing: .02em; }
.strip-divider { width: 1px; height: 40px; background: rgba(255,255,255,.4); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-block { width: 100%; aspect-ratio: 3/4; background: var(--sand); border-radius: 2px; overflow: hidden; position: relative; }
.about-img-block::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 60%; height: 60%; border: 2px solid var(--clay); border-radius: 2px; z-index: -1; }
.img-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg,var(--sand) 0%,var(--clay) 100%); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond',serif; font-size: 6rem; color: rgba(176,137,116,.25); }
.about-badge { position: absolute; bottom: -1rem; left: -1.5rem; background: var(--rose-brown); color: var(--white); padding: 1.25rem 1.75rem; border-radius: 2px; }
.about-badge strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 2.2rem; font-weight: 400; }
.about-badge span { font-size: 1rem; letter-spacing: .15em; text-transform: uppercase; opacity: .85; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.value-item { padding: 1.25rem; border-left: 2px solid var(--clay); background: rgba(201,163,142,.08); border-radius: 0 2px 2px 0; }
.value-item h4 { font-size: 1.55rem; font-weight: 500; margin-bottom: .4rem; }
.value-item p { font-size: 1rem; color: var(--charcoal-lt); line-height: 1.7; font-weight: 300; }
.approach { background: var(--sand); }
.approach-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.approach-steps { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
.approach-step { display: flex; gap: 1.5rem; align-items: flex-start; padding: 2rem; background: var(--ivory); border-radius: 2px; transition: transform .3s, box-shadow .3s; }
.approach-step:hover { transform: translateX(6px); box-shadow: -4px 0 0 var(--clay), 4px 8px 24px rgba(90,90,90,.08); }
.step-num { font-family: 'Cormorant Garamond',serif; font-size: 2.5rem; color: var(--clay); font-weight: 300; line-height: 1; min-width: 2rem; }
.step-content h4 { font-size: 1.6rem; font-weight: 500; margin-bottom: .5rem; }
.step-content p { font-size: 1.2rem; line-height: 1.8; color: var(--charcoal-lt); font-weight: 300; }
.experience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 4rem; }
.exp-card { padding: 2.5rem 2rem; border: 1px solid var(--sand); border-radius: 2px; background: var(--white); position: relative; transition: transform .3s, box-shadow .3s; }
.exp-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(90,90,90,.1); }
.exp-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--clay); transition: height .4s; }
.exp-card:hover::before { height: 100%; }
.exp-icon { font-size: 1.5rem; margin-bottom: 1.5rem; display: block; }
.exp-card h3 { font-size: 1.5rem; margin-bottom: 1rem; line-height: 1.3; }
.exp-card p { font-size: 1rem; line-height: 1.8; color: var(--charcoal-lt); font-weight: 300; }
.exp-stat { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--sand); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; color: var(--rose-brown); }
.quote-break { background: var(--rose-brown); padding: 6rem 15%; text-align: center; }
.quote-break blockquote { font-family: 'Cormorant Garamond',serif; font-size: clamp(1.8rem,3.5vw,3rem); color: var(--white); font-style: italic; font-weight: 300; line-height: 1.5; }
.quote-break cite { display: block; margin-top: 2rem; font-size: 1rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.65); font-style: normal; }

/* ── Home Blog Grid ── */
.blog { background: var(--sand); }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.blog-card { background: var(--ivory); border-radius: 2px; overflow: hidden; transition: transform .3s; cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); }
.blog-img { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg,var(--sand) 0%,var(--clay) 100%); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond',serif; font-size: 3rem; color: rgba(176,137,116,.3); }
.blog-card:first-child .blog-img { aspect-ratio: 4/3; font-size: 5rem; }
.blog-body { padding: 1.75rem; }
.blog-cat { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--rose-brown); margin-bottom: .75rem; display: block; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: .75rem; line-height: 1.35; }
.blog-card:first-child h3 { font-size: 1.5rem; }
.blog-card p { font-size: .84rem; color: var(--charcoal-lt); line-height: 1.75; font-weight: 300; }
.blog-meta { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--sand); font-size: .7rem; color: var(--charcoal-lt); display: flex; justify-content: space-between; align-items: center; }
.read-more { color: var(--rose-brown); text-decoration: none; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }

/* Home Contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; padding: 0; }
.contact-left { background: var(--charcoal); padding: 7rem 6%; display: flex; flex-direction: column; justify-content: center; }
.contact-left .eyebrow { color: var(--clay); }
.contact-left .section-title { color: var(--white); }
.contact-left .section-title em { color: var(--clay); }
.contact-left > p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.85; font-weight: 300; margin-bottom: 3rem; max-width: 400px; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 50px; height: 50px; border: 1px solid rgba(201,163,142,.4); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; color: var(--clay); }
.contact-info span { display: block; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.contact-info a, .contact-info p { color: rgba(255,255,255,.85) !important; text-decoration: none; font-size: 1rem !important; line-height: 1.5 !important; margin: 0 !important; transition: color .3s; }
.contact-info a:hover { color: var(--clay) !important; }
.social-links { display: flex; gap: 1rem; margin-top: 3rem; }
.social-link { padding: 10px 20px; border: 1px solid rgba(201,163,142,.35); color: rgba(255,255,255,.7); text-decoration: none; font-size: .95rem; letter-spacing: .2em; text-transform: uppercase; border-radius: 2px; transition: all .3s; }
.social-link:hover { border-color: var(--clay); color: var(--clay); }
.contact-right { background: var(--ivory); padding: 7rem 6%; display: flex; flex-direction: column; justify-content: center; }
.contact-right h3 { font-size: 1.5rem; margin-bottom: 2rem; }
.form-submit { width: 100%; padding: 14px; background: var(--rose-brown); color: var(--white); border: none; font-family: 'Jost',sans-serif; font-size: .7rem; letter-spacing: .25em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background .3s; }
.form-submit:hover { background: var(--sage); }
.form-note { text-align: center; margin-top: 1rem; font-size: .75rem; color: var(--charcoal-lt); }

/* ══════════════════════════════════════════════════════════════════
   BLOG PAGE
   ══════════════════════════════════════════════════════════════════ */
.page-hero--dark { background: var(--charcoal-dk); min-height: 52vh; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--nav-h) 8% 5rem; position: relative; overflow: hidden; }
.page-hero--dark::before { content: 'Blog'; position: absolute; right: -1rem; top: -2rem; font-family: 'Cormorant Garamond',serif; font-size: 20rem; color: rgba(255,255,255,.03); font-weight: 300; line-height: 1; pointer-events: none; }
.page-hero--dark::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right,var(--clay),var(--rose-brown),var(--sage)); }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: flex-end; }
.hero-left-text h1 { font-size: clamp(3rem,5vw,5.5rem); color: var(--white); line-height: 1.03; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp .9s .3s forwards; }
.hero-left-text h1 em { font-style: italic; color: var(--clay); }
.hero-left-text p { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,.55); font-weight: 300; max-width: 440px; opacity: 0; animation: fadeUp .9s .5s forwards; }
.hero-right-text { opacity: 0; animation: fadeUp .9s .65s forwards; }
.hero-right-text p { font-family: 'Cormorant Garamond',serif; font-size: 1.35rem; font-style: italic; color: rgba(255,255,255,.5); line-height: 1.6; border-left: 2px solid rgba(201,163,142,.35); padding-left: 1.5rem; }
.filter-bar { background: var(--sand); padding: 1.5rem 8%; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; position: sticky; top: var(--nav-h); z-index: 50; border-bottom: 1px solid rgba(201,163,142,.2); }
.filter-label { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--charcoal-lt); margin-right: .5rem; }
.filter-btn { padding: 7px 18px; border: 1px solid rgba(176,137,116,.3); background: transparent; color: var(--charcoal); font-family: 'Jost',sans-serif; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; border-radius: 20px; cursor: pointer; transition: all .25s; text-decoration: none; }
.filter-btn:hover, .filter-btn.active { background: var(--rose-brown); border-color: var(--rose-brown); color: var(--white); }
.filter-count { margin-left: auto; font-size: .7rem; color: var(--charcoal-lt); }
.featured-section { padding: 5rem 8% 0; }
.featured-label { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--rose-brown); margin-bottom: 2rem; display: flex; align-items: center; gap: .75rem; }
.featured-label::after { content: ''; flex: 1; height: 1px; background: var(--sand); }
.featured-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; background: var(--white); border: 1px solid var(--sand); border-radius: 2px; overflow: hidden; cursor: pointer; transition: transform .35s, box-shadow .35s; text-decoration: none; color: inherit; }
.featured-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(90,90,90,.1); }
.featured-img { background: linear-gradient(145deg,var(--sand) 0%,var(--clay) 60%,var(--sage) 100%); min-height: 420px; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond',serif; font-size: 9rem; color: rgba(176,137,116,.18); position: relative; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.post-tag { position: absolute; top: 1.5rem; left: 1.5rem; padding: 6px 16px; background: var(--rose-brown); color: var(--white); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; border-radius: 20px; z-index: 1; }
.featured-body { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-body .cat { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: var(--rose-brown); margin-bottom: 1.25rem; display: block; }
.featured-body h2 { font-size: clamp(1.6rem,2.5vw,2.4rem); line-height: 1.15; margin-bottom: 1.25rem; }
.featured-body h2 em { font-style: italic; color: var(--rose-brown); }
.featured-body p { font-size: .95rem; line-height: 1.9; color: var(--charcoal-lt); font-weight: 300; margin-bottom: 2rem; }
.post-meta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.post-meta span { font-size: .7rem; color: var(--charcoal-lt); }
.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--clay); display: inline-block; }
.read-link { display: inline-flex; align-items: center; gap: .6rem; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-brown); text-decoration: none; margin-top: 1.75rem; transition: gap .3s; }
.read-link:hover { gap: 1rem; }
.grid-section { padding: 4rem 8% 6rem; }
.grid-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
.grid-section-header h3 { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--charcoal-lt); }
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.post-card { background: var(--white); border: 1px solid var(--sand); border-radius: 2px; overflow: hidden; cursor: pointer; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(90,90,90,.09); }
.post-card-img { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond',serif; font-size: 3.5rem; color: rgba(176,137,116,.22); position: relative; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.post-card-img .tag { position: absolute; top: 1rem; left: 1rem; padding: 4px 12px; border-radius: 20px; font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; z-index: 1; }
.tag-gut-health     { background: rgba(122,138,119,.15); color: var(--sage); }
.tag-emotional-eating { background: rgba(176,137,116,.15); color: var(--rose-brown); }
.tag-mindful-eating { background: rgba(201,163,142,.15); color: var(--clay); }
.tag-recipes        { background: rgba(90,90,90,.1); color: var(--charcoal); }
.img-gut-health     { background: linear-gradient(140deg,#eaf0e9,#7a8a77); }
.img-emotional-eating { background: linear-gradient(140deg,#f5ede8,#c9a38e); }
.img-mindful-eating { background: linear-gradient(140deg,#f0ebe5,#b08974); }
.img-recipes        { background: linear-gradient(140deg,#f0ede8,#8a8a7a); }
.post-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.post-card-body .cat { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-brown); margin-bottom: .75rem; display: block; }
.post-card-body h3 { font-size: 1.15rem; line-height: 1.3; margin-bottom: .75rem; }
.post-card-body p { font-size: .84rem; line-height: 1.8; color: var(--charcoal-lt); font-weight: 300; flex: 1; }
.post-card-footer { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--sand); display: flex; justify-content: space-between; align-items: center; }
.post-card-footer span { font-size: .68rem; color: var(--charcoal-lt); }
.post-card-footer .read-more { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--rose-brown); text-decoration: none; }
.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3.5rem; flex-wrap: wrap; }
.pg-btn { padding: 9px 18px; border: 1px solid var(--sand); border-radius: 2px; font-size: .7rem; color: var(--charcoal); text-decoration: none; transition: all .25s; }
.pg-btn:hover, .pg-btn.active { background: var(--rose-brown); border-color: var(--rose-brown); color: var(--white); }
.newsletter-band { background: var(--sage); padding: 5rem 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.newsletter-band h2 { font-size: clamp(2rem,3vw,2.8rem); color: var(--white); line-height: 1.15; margin-bottom: 1rem; }
.newsletter-band h2 em { font-style: italic; color: var(--sand); }
.newsletter-band p { font-size: .95rem; line-height: 1.85; color: rgba(255,255,255,.65); font-weight: 300; }
.nl-form { display: flex; gap: .75rem; flex-wrap: wrap; }
.nl-form input { flex: 1; min-width: 220px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: var(--white); font-family: 'Jost',sans-serif; font-size: .9rem; font-weight: 300; border-radius: 2px; outline: none; transition: border-color .3s; }
.nl-form input::placeholder { color: rgba(255,255,255,.4); }
.nl-form input:focus { border-color: rgba(255,255,255,.5); }
.nl-form button { padding: 13px 28px; background: var(--rose-brown); color: var(--white); border: none; font-family: 'Jost',sans-serif; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background .3s; }
.nl-form button:hover { background: var(--charcoal-dk); }
.nl-note { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: .75rem; }

/* ══════════════════════════════════════════════════════════════════
   BLOG POST PAGE
   ══════════════════════════════════════════════════════════════════ */
.article-hero { background: var(--charcoal-dk); position: relative; overflow: hidden; }
.article-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right,var(--clay),var(--rose-brown),var(--sage)); }
.hero-top { padding: 5rem 8% 0; display: flex; flex-direction: column; align-items: flex-start; position: relative; z-index: 1; }
.article-cat { display: inline-block; padding: 6px 16px; background: rgba(176,137,116,.2); border: 1px solid rgba(176,137,116,.3); border-radius: 20px; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--clay); margin-bottom: 1.75rem; }
.article-hero h1 { font-size: clamp(2.4rem,4.5vw,4.2rem); color: var(--white); line-height: 1.08; max-width: 800px; margin-bottom: 1.75rem; }
.article-hero h1 em { font-style: italic; color: var(--clay); }
.article-intro { font-size: 1.1rem; line-height: 1.85; color: rgba(255,255,255,.6); font-weight: 300; max-width: 640px; margin-bottom: 3rem; }
.article-meta-bar { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; padding: 1.75rem 0; border-top: 1px solid rgba(255,255,255,.08); }
.meta-author { display: flex; align-items: center; gap: .9rem; }
.author-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg,var(--clay),var(--rose-brown)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; color: var(--white); flex-shrink: 0; }
.author-info strong { display: block; font-size: .82rem; color: rgba(255,255,255,.85); font-weight: 400; }
.author-info span { font-size: .68rem; color: rgba(255,255,255,.4); letter-spacing: .1em; }
.meta-divider { width: 1px; height: 28px; background: rgba(255,255,255,.12); }
.meta-item { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .08em; }
.meta-item strong { color: rgba(255,255,255,.7); font-weight: 400; }
.hero-image { margin-top: 3.5rem; width: 100%; height: 420px; background: linear-gradient(150deg,rgba(58,58,58,1) 0%,var(--clay) 50%,var(--sage) 100%); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond',serif; font-size: 10rem; color: rgba(255,255,255,.07); position: relative; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom,transparent 50%,rgba(58,58,58,.8) 100%); }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 5rem; padding: 5rem 8%; max-width: 1280px; margin: 0 auto; align-items: start; }
.article-body { max-width: 680px; }
.toc { background: var(--sand); border-radius: 2px; padding: 1.75rem 2rem; margin-bottom: 3rem; border-left: 3px solid var(--clay); }
.toc h4 { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--charcoal-lt); margin-bottom: 1rem; }
.toc ol { padding-left: 1.25rem; }
.toc li { margin-bottom: .5rem; }
.toc a { font-size: .9rem; color: var(--charcoal); text-decoration: none; line-height: 1.6; transition: color .3s; font-weight: 300; }
.toc a:hover { color: var(--rose-brown); }
.article-body p { font-size: 1.05rem; line-height: 1.95; color: var(--charcoal); font-weight: 300; margin-bottom: 1.75rem; }
.article-body h2 { font-size: clamp(1.7rem,2.5vw,2.2rem); color: var(--charcoal-dk); margin: 3.5rem 0 1.25rem; line-height: 1.2; padding-top: 1rem; border-top: 1px solid var(--sand); }
.article-body h2 em { font-style: italic; color: var(--rose-brown); }
.article-body h3 { font-size: 1.35rem; color: var(--charcoal-dk); margin: 2.5rem 0 1rem; line-height: 1.3; }
.article-body blockquote { font-family: 'Cormorant Garamond',serif; font-size: 1.3rem; font-style: italic; color: var(--charcoal-dk); line-height: 1.5; padding-left: 1.5rem; border-left: 3px solid var(--clay); margin: 2rem 0; }
.pull-quote { margin: 3rem 0; padding: 2.5rem 2.5rem 2.5rem 2rem; border-left: 3px solid var(--rose-brown); background: rgba(176,137,116,.06); border-radius: 0 2px 2px 0; }
.pull-quote blockquote { font-family: 'Cormorant Garamond',serif; font-size: 1.55rem; font-style: italic; color: var(--charcoal-dk); line-height: 1.5; font-weight: 400; border: none; padding: 0; margin: 0; }
.highlight-box { background: var(--sand); border-radius: 2px; padding: 2rem 2.25rem; margin: 2.5rem 0; }
.highlight-box h4 { font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rose-brown); margin-bottom: 1rem; }
.highlight-box ul { padding-left: 1.25rem; }
.highlight-box li { font-size: .95rem; line-height: 1.8; color: var(--charcoal); font-weight: 300; margin-bottom: .5rem; }
.callout { background: var(--sage); border-radius: 2px; padding: 2rem 2.25rem; margin: 2.5rem 0; display: flex; gap: 1.25rem; align-items: flex-start; }
.callout-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.callout p { font-size: .95rem; line-height: 1.85; color: rgba(255,255,255,.85); font-weight: 300; margin: 0; }
.callout p strong { color: var(--white); font-weight: 500; }
.article-tags { display: flex; gap: .6rem; flex-wrap: wrap; margin: 3rem 0 2rem; }
.a-tag { padding: 5px 14px; border: 1px solid var(--sand); border-radius: 20px; font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: var(--charcoal-lt); cursor: pointer; transition: all .25s; }
.a-tag:hover { border-color: var(--clay); color: var(--rose-brown); }
.share-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 2rem 0; border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); margin-bottom: 3rem; }
.share-label { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--charcoal-lt); margin-right: .5rem; }
.share-btn { padding: 8px 18px; border: 1px solid var(--sand); background: transparent; font-family: 'Jost',sans-serif; font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--charcoal); cursor: pointer; border-radius: 2px; transition: all .3s; }
.share-btn:hover { background: var(--rose-brown); border-color: var(--rose-brown); color: var(--white); }
.author-bio { background: var(--sand); border-radius: 2px; padding: 2.5rem; display: flex; gap: 1.75rem; align-items: flex-start; margin-bottom: 3rem; }
.author-bio-avatar { width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg,var(--clay),var(--rose-brown)); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond',serif; font-size: 1.8rem; color: var(--white); }
.author-bio h4 { font-size: 1.15rem; margin-bottom: .3rem; }
.author-bio .role { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-brown); margin-bottom: .75rem; display: block; }
.author-bio p { font-size: .88rem; line-height: 1.8; color: var(--charcoal-lt); font-weight: 300; margin-bottom: 1rem; }
.author-bio a { font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--rose-brown); text-decoration: none; }
.sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); display: flex; flex-direction: column; gap: 2rem; }
.sidebar-card { background: var(--white); border: 1px solid var(--sand); border-radius: 2px; padding: 2rem; }
.sidebar-card h4 { font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--charcoal-lt); margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--sand); }
.rp-label { display: flex; justify-content: space-between; font-size: .7rem; color: var(--charcoal-lt); margin-bottom: .5rem; }
.rp-bar { height: 4px; background: var(--sand); border-radius: 2px; overflow: hidden; }
.rp-fill { height: 100%; width: 0%; background: linear-gradient(to right,var(--clay),var(--rose-brown)); transition: width .2s; border-radius: 2px; }
.sidebar-post { display: flex; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--sand); cursor: pointer; transition: opacity .3s; text-decoration: none; color: inherit; }
.sidebar-post:last-child { border: none; padding-bottom: 0; }
.sidebar-post:hover { opacity: .75; }
.sp-thumb { width: 52px; height: 52px; border-radius: 2px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.sp-thumb.gut-health { background: linear-gradient(135deg,var(--sand),var(--clay)); }
.sp-thumb.emotional-eating { background: linear-gradient(135deg,#f5ede8,var(--clay)); }
.sp-thumb.mindful-eating { background: linear-gradient(135deg,#ede8f0,var(--rose-brown)); }
.sp-info { flex: 1; }
.sp-info span { font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--rose-brown); display: block; margin-bottom: .25rem; }
.sp-info p { font-size: .82rem; line-height: 1.4; color: var(--charcoal); font-weight: 400; }
.sidebar-cta { background: var(--sage); border: none; }
.sidebar-cta h3 { font-size: 1.4rem; color: var(--white); margin-bottom: .75rem; line-height: 1.2; }
.sidebar-cta h3 em { font-style: italic; color: var(--sand); }
.sidebar-cta p { font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.7); font-weight: 300; margin-bottom: 1.5rem; }
.sidebar-cta a { display: block; padding: 12px; background: var(--white); color: var(--sage); text-decoration: none; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; border-radius: 2px; text-align: center; transition: background .3s; }
.sidebar-cta a:hover { background: var(--sand); }
.nl-sidebar input { width: 100%; padding: 10px 12px; border: 1px solid var(--sand); background: transparent; font-family: 'Jost',sans-serif; font-size: .88rem; font-weight: 300; border-radius: 2px; outline: none; margin-bottom: .75rem; transition: border-color .3s; color: var(--charcoal); }
.nl-sidebar input:focus { border-color: var(--clay); }
.nl-sidebar button { width: 100%; padding: 10px; background: var(--rose-brown); color: var(--white); border: none; font-family: 'Jost',sans-serif; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; border-radius: 2px; transition: background .3s; }
.nl-sidebar button:hover { background: var(--charcoal-dk); }
.nl-sidebar .note { font-size: .68rem; color: var(--charcoal-lt); margin-top: .5rem; }
.related-section { padding: 5rem 8%; background: var(--sand); }
.related-eyebrow { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--rose-brown); margin-bottom: 1rem; display: block; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.related-card { background: var(--ivory); border-radius: 2px; overflow: hidden; cursor: pointer; transition: transform .3s, box-shadow .3s; text-decoration: none; color: inherit; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(90,90,90,.09); }
.rc-img { width: 100%; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.rc-img.gut-health { background: linear-gradient(140deg,#eaf0e9,#7a8a77); }
.rc-img.emotional-eating { background: linear-gradient(140deg,#f5ede8,#c9a38e); }
.rc-img.mindful-eating { background: linear-gradient(140deg,#f0ebe5,#b08974); }
.rc-body { padding: 1.5rem; }
.rc-body .cat { font-size: .58rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-brown); display: block; margin-bottom: .6rem; }
.rc-body h3 { font-size: 1.1rem; line-height: 1.3; margin-bottom: .5rem; }
.rc-body span { font-size: .72rem; color: var(--charcoal-lt); }
.post-cta { background: var(--rose-brown); padding: 6rem 8%; text-align: center; }
.post-cta h2 { font-size: clamp(2rem,3.5vw,3rem); color: var(--white); margin-bottom: 1rem; }
.post-cta h2 em { font-style: italic; color: var(--sand); }
.post-cta p { font-size: 1rem; color: rgba(255,255,255,.7); font-weight: 300; line-height: 1.85; max-width: 500px; margin: 0 auto 2.5rem; }
.post-cta a { display: inline-block; padding: 14px 40px; background: var(--white); color: var(--rose-brown); text-decoration: none; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; border-radius: 2px; transition: background .3s, transform .2s; }
.post-cta a:hover { background: var(--sand); transform: translateY(-2px); }

/* ── KEYFRAMES ───────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(122,138,119,.25); } 50% { box-shadow: 0 0 0 6px rgba(122,138,119,.1); } }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 50vh; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .approach-inner { grid-template-columns: 1fr; gap: 2rem; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:first-child { grid-column: span 2; }
  .contact { grid-template-columns: 1fr; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 260px; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-band { grid-template-columns: 1fr; gap: 2.5rem; }
  .article-layout { grid-template-columns: 1fr; gap: 3rem; }
  .sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card:first-child { grid-column: span 1; }
  .intro-strip { flex-direction: column; gap: 1rem; text-align: center; }
  .strip-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .quote-break { padding: 5rem 8%; }
}
