/* ═══════════════════════════════════════════════════════════
   ESCAPE BEAUTY — Journal Shared Stylesheet
   Used by: journal/index.html and every post page
   ═══════════════════════════════════════════════════════════ */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────── */
:root {
  --gold:           #C9A96E;
  --gold-light:     #E8D5A3;
  --gold-pale:      #F5EDD8;
  --gold-dark:      #8B6F3E;
  --charcoal:       #2C2928;
  --charcoal-mid:   #4A4340;
  --charcoal-soft:  #6A6260;
  --charcoal-mute:  #8A8280;
  --charcoal-faint: #D4D0CE;
  --warm-white:     #FBF8F5;
  --marble:         #F7F3EE;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;
  --container-max: 1280px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(44,41,40,0.06);
  --shadow-md: 0 8px 32px rgba(44,41,40,0.10);
}

/* ─── 2. RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); padding: 0; -webkit-appearance: none; appearance: none; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }

/* ─── 3. KEYFRAMES ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes textShimmer {
  0%   { background-position: 150% center; }
  100% { background-position: -50% center; }
}
@keyframes drawerIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes drawerOut {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(100%); opacity: 0; }
}
@keyframes drawLine {
  from { width: 0; opacity: 0; }
  to   { width: 24px; opacity: 0.6; }
}

/* ─── 4. LAYOUT UTILITIES ───────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── 5. BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(90deg, #B8924A 0%, #C9A96E 25%, #EDD99A 50%, #C9A96E 75%, #B8924A 100%);
  background-size: 250% auto;
  animation: textShimmer 4s linear infinite;
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 36px;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.35); }

.btn-gold {
  display: inline-block;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 30px;
  transition: background 0.2s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline-sm {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid rgba(44,41,40,0.25);
  color: var(--charcoal);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 24px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-outline-sm:hover { background: var(--charcoal); color: var(--warm-white); border-color: var(--charcoal); }

/* ─── 6. NAV ────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal);
  transition: background 0.3s, box-shadow 0.3s;
}
#mainNav.scrolled {
  background: rgba(44,41,40,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 640px)  { .nav-inner { padding: 0 32px; } }
@media (min-width: 1024px) { .nav-inner { height: 72px; padding: 0 48px; } }

.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-word {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--warm-white);
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-sub {
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.nav-links { display: none; }
@media (min-width: 1024px) {
  .nav-links { display: flex; gap: 32px; align-items: center; }
}
.nav-link {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.nav-book-btn { display: none; }
@media (min-width: 480px) {
  .nav-book-btn {
    display: inline-block;
    padding: 10px 22px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 30px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .nav-book-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 18px;
  cursor: pointer;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.65);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-hamburger { display: none; } }

.nav-drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  padding: 40px 20px 32px;
  flex-direction: column;
  z-index: 199;
  overflow-y: auto;
}
.nav-drawer.is-open  { display: flex; animation: drawerIn 0.32s var(--ease) both; }
.nav-drawer.is-closing { display: flex; animation: drawerOut 0.28s var(--ease) both; }

.nav-drawer-links { display: flex; flex-direction: column; margin-bottom: 40px; }
.nav-drawer-link {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer-link:hover { color: var(--gold-light); padding-left: 8px; }
.nav-drawer-cta { margin-bottom: 20px; text-align: center; }
.nav-drawer-sub {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);
  text-align: center;
  text-transform: uppercase;
}

/* ─── 6b. NAV DROPDOWN (desktop) ───────────────────────── */
.nav-dropdown { position: relative; }
/* Invisible bridge — keeps hover active while mouse crosses the gap */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 14px;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  padding-bottom: 3px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--sans);
  transition: color 0.2s;
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle { color: var(--gold-light); }
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after { width: 100%; }
.nav-caret {
  font-size: 8px;
  display: inline-block;
  transition: transform 0.2s var(--ease);
  color: rgba(255,255,255,0.3);
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; animation: fadeUp 0.15s var(--ease) both; }
.nav-dropdown-item {
  display: block;
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-dropdown-item:hover,
.nav-dropdown-item.active { color: var(--gold-light); background: rgba(255,255,255,0.04); }
.nav-dropdown-divider { height: 1px; background: rgba(255,255,255,0.06); margin: 6px 0; }

/* ─── 6c. NAV DRAWER SUB-LINKS (mobile) ─────────────────── */
.nav-drawer-sub-link {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer-sub-link:hover { color: var(--gold-light); padding-left: 28px; }

/* ─── 7. FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--charcoal);
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px)  { footer { padding: 80px 32px 40px; } }
@media (min-width: 1024px) { footer { padding: 80px 48px 40px; } }
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.18;
}
.footer-inner { max-width: var(--container-max); margin: 0 auto; }
.footer-top {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
@media (min-width: 640px)  { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; } }

.footer-logo { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.footer-logo-word {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--warm-white);
  text-transform: uppercase;
  line-height: 1;
}
.footer-logo-sub { font-size: 7.5px; font-weight: 400; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); text-transform: uppercase; }
.footer-rule { width: 40px; height: 1px; background: var(--gold); opacity: 0.35; margin: 12px 0 16px; }
.footer-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.32); line-height: 1.85; max-width: 260px; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; margin-bottom: 20px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.footer-social:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.footer-awards { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-award {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 4px 12px;
  border-radius: 20px;
}
.footer-col-title { font-size: 9px; font-weight: 600; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-link { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-link:hover { color: var(--warm-white); }
.footer-book-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.7; margin-bottom: 20px; }
.footer-book-btn { margin-bottom: 24px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal-link { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; transition: color 0.2s; }
.footer-legal-link:hover { color: rgba(255,255,255,0.5); }

/* ─── 8. JOURNAL LISTINGS PAGE ──────────────────────────── */

/* Page offset for fixed nav */
.journal-page { padding-top: 64px; }
@media (min-width: 1024px) { .journal-page { padding-top: 72px; } }

/* Hero */
.journal-hero {
  background: var(--charcoal);
  padding: 80px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px)  { .journal-hero { padding: 96px 32px 80px; } }
@media (min-width: 1024px) { .journal-hero { padding: 112px 48px 96px; } }

.journal-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}
.journal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.journal-eyebrow::before,
.journal-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.journal-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.journal-hero-h1 em { font-style: italic; color: var(--gold); }
.journal-hero-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Filter bar */
.journal-filters {
  padding: 40px 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 640px) { .journal-filters { padding: 48px 32px 0; } }
@media (min-width: 1024px) { .journal-filters { padding: 56px 48px 0; } }

.filter-btn {
  padding: 9px 20px;
  border-radius: 24px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal-faint);
  color: var(--charcoal-soft);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
}

/* Post grid */
.journal-grid-wrap {
  padding: 48px 20px 80px;
}
@media (min-width: 640px)  { .journal-grid-wrap { padding: 56px 32px 96px; } }
@media (min-width: 1024px) { .journal-grid-wrap { padding: 64px 48px 120px; } }

.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 640px)  { .journal-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (min-width: 1024px) { .journal-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }

/* Post card */
.post-card {
  background: var(--marble);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.post-card.hidden { display: none; }

.post-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal-faint);
}
.post-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.post-card:hover .post-card-img img { transform: scale(1.04); }

/* Placeholder when no image */
.post-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--marble) 0%, var(--gold-pale) 100%);
  font-family: var(--serif);
  font-size: 48px;
  color: rgba(201,169,110,0.35);
  font-style: italic;
}

.post-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-card-category {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 4px 10px;
  border-radius: 20px;
}
.post-card-date {
  font-size: 11px;
  font-weight: 300;
  color: var(--charcoal-mute);
  letter-spacing: 0.04em;
}
.post-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  transition: color 0.2s;
}
.post-card:hover .post-card-title { color: var(--gold-dark); }
.post-card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--charcoal-mute);
  line-height: 1.75;
  flex: 1;
}
.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(44,41,40,0.06);
  margin-top: auto;
}
.post-card-read {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}
.post-card:hover .post-card-read { color: var(--gold-dark); gap: 10px; }
.post-card-read-arrow { font-size: 14px; }

/* Empty state */
.journal-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--charcoal-mute);
  font-size: 14px;
  font-weight: 300;
  display: none;
  grid-column: 1 / -1;
}
.journal-empty.visible { display: block; }

/* Mid-page CTA strip */
.journal-cta-strip {
  background: var(--marble);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(44,41,40,0.06);
  border-bottom: 1px solid rgba(44,41,40,0.06);
}
@media (min-width: 640px) { .journal-cta-strip { padding: 72px 32px; } }

.journal-cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.journal-cta-eyebrow::before,
.journal-cta-eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--gold); opacity: 0.5; }
.journal-cta-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}
.journal-cta-h2 em { font-style: italic; color: var(--gold-dark); }
.journal-cta-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal-mute);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* ─── 9. INDIVIDUAL POST PAGE ───────────────────────────── */

/* Post hero */
.post-hero {
  background: var(--charcoal);
  padding: 80px 20px 64px;
  text-align: center;
  position: relative;
}
@media (min-width: 640px)  { .post-hero { padding: 96px 32px 72px; } }
@media (min-width: 1024px) { .post-hero { padding: 112px 48px 80px; } }
.post-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}
.post-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 32px;
  transition: color 0.2s;
}
.post-hero-back:hover { color: var(--gold); }
.post-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.post-hero-category {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 5px 12px;
  border-radius: 20px;
}
.post-hero-date {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}
.post-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.post-hero-h1 em { font-style: italic; color: var(--gold); }
.post-hero-intro {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Post hero — template aliases (class names used by individual post HTML) */
.post-hero-inner {
  max-width: 740px;
  margin: 0 auto;
}
.post-breadcrumb { display: flex; justify-content: center; margin-bottom: 24px; }
.post-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.post-breadcrumb li + li::before { content: ' · '; margin: 0 6px; opacity: 0.4; }
.post-breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--gold); }
.post-category-tag {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.post-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.1;
  margin: 0 auto 20px;
  max-width: 780px;
}
.post-title em { font-style: italic; color: var(--gold); }
.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
}
.post-author { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.post-date, .post-read-time { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.28); letter-spacing: 0.04em; }

/* Back navigation */
.post-back-nav { margin-bottom: 28px; }
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.post-back-link:hover { color: var(--gold); }

/* Cover image */
.post-cover-img { margin: 0 0 40px; overflow: hidden; }
.post-cover-img img { width: 100%; display: block; border-radius: 4px; }
.post-cover-img figcaption { font-size: 11px; font-weight: 300; color: rgba(44,41,40,0.4); text-align: center; margin-top: 8px; }

/* Key takeaways box */
.post-takeaways {
  background: var(--marble);
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 24px 28px;
  margin: 0 0 40px;
}
.takeaways-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.post-takeaways ul { margin: 0; padding-left: 20px; }
.post-takeaways li { font-size: 14px; font-weight: 300; color: var(--charcoal-mid); line-height: 1.7; margin-bottom: 6px; }

/* In-post styled list */
.post-list { margin: 20px 0 28px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.post-list li { font-size: 15px; font-weight: 300; color: var(--charcoal); line-height: 1.75; padding-left: 20px; position: relative; }
.post-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 12px; }

/* Post FAQ section */
.post-faq { margin-top: 48px; }
.faq-item { border-bottom: 1px solid rgba(44,41,40,0.08); padding: 20px 0; }
.faq-item h3 { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--charcoal); margin-bottom: 10px; }
.faq-item p { font-size: 14px; font-weight: 300; color: var(--charcoal-mid); line-height: 1.75; margin: 0; }

/* Treatment comparison table */
.treatment-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 14px; }
.treatment-table th { background: var(--charcoal); color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 10px 14px; text-align: left; }
.treatment-table td { padding: 12px 14px; border-bottom: 1px solid rgba(44,41,40,0.08); color: var(--charcoal); font-weight: 300; line-height: 1.5; vertical-align: top; }
.treatment-table tr:last-child td { border-bottom: none; }
.treatment-table tr:nth-child(even) td { background: var(--marble); }

/* Video embed */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; margin: 28px 0 32px; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* Insight callout box */
.insight-box {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 24px 0 32px;
}
.insight-box p { font-size: 14px; font-weight: 300; color: var(--charcoal-mid); line-height: 1.75; margin: 0; font-style: italic; }

/* Post featured image */
.post-featured-img {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 640px) { .post-featured-img { padding: 0 32px; } }
.post-featured-img img {
  width: 100%;
  border-radius: 4px;
  margin-top: -32px;
  box-shadow: 0 16px 48px rgba(44,41,40,0.16);
}

/* Post body */
.post-body-wrap {
  padding: 64px 20px 80px;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 640px) { .post-body-wrap { padding: 72px 32px 96px; } }

.post-body { font-size: 15px; font-weight: 300; color: var(--charcoal); line-height: 1.9; }
.post-body h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 48px 0 16px;
}
.post-body h2 em { font-style: italic; color: var(--gold-dark); }
.post-body h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 36px 0 12px;
}
.post-body p { margin-bottom: 24px; }
.post-body p:last-child { margin-bottom: 0; }
.post-body ul, .post-body ol {
  margin: 20px 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { font-size: 15px; font-weight: 300; line-height: 1.75; }
.post-body strong { font-weight: 600; }
.post-body em { font-style: italic; }
.post-body a { color: var(--gold-dark); border-bottom: 1px solid rgba(139,111,62,0.25); transition: color 0.2s, border-color 0.2s; }
.post-body a:hover { color: var(--gold); border-color: var(--gold); }
.post-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--marble);
  border-radius: 0 4px 4px 0;
}
.post-body blockquote p {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-mid);
  margin-bottom: 0;
}

/* In-post CTA box */
.post-cta-box {
  background: var(--charcoal);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  margin: 48px 0;
}
.post-cta-box-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.post-cta-box-heading {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.post-cta-box-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Post footer nav (prev/next) */
.post-nav {
  border-top: 1px solid rgba(44,41,40,0.08);
  padding: 48px 20px;
  display: flex;
  justify-content: center;
}
@media (min-width: 640px) { .post-nav { padding: 48px 32px; } }

/* ─── POST CTA BOX — class aliases used in individual posts ── */
.post-cta-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.post-cta-heading {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.post-cta-body {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  line-height: 1.7;
}
.post-cta-btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.post-cta-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.post-cta-sub {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

/* ─── FOOTER — simple post-page footer helpers ────────────── */
.footer-brand { margin-bottom: 28px; }
.footer-brand .footer-logo {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  margin-bottom: 4px;
}
.footer-address {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer-links ul { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-links li { margin: 0; }
.footer-links a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--warm-white); }
