/* ── MBMD SHARED STYLES ── */
:root {
  --dark: #13191A;
  --dark-deep: #0d1112;
  --dark-light: #1e2729;
  --cream: #FBD19D;
  --cream-pale: #fef6e8;
  --gold: #D4A36B;
  --gold-bright: #dbb07c;
  --orange: #E2730D;
  --orange-bright: #f07e14;
  --brown: #582C18;
  --white: #ffffff;
  --ink: #13191A;
  --ink-mid: #2a2018;
  --ink-muted: #6a5a48;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(19,25,26,0.10);
}

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

body {
  background: var(--cream-pale);
  color: var(--ink);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.nav-top {
  background: var(--dark-deep);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: 52px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo em { color: var(--orange); font-style: italic; }

.nav-links {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  gap: 0.2rem;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--brown);
}

.nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover { color: var(--orange); background: rgba(226,115,13,0.1); }
.nav-link.active { color: var(--orange); }

/* ── PAGE HERO (category pages) ── */
.page-hero {
  background: var(--dark);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.page-hero::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--brown), var(--orange), var(--gold));
  margin-top: 2.5rem;
}

.page-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.page-hero h1 em { color: var(--orange); font-style: italic; }

.page-hero p {
  font-size: 0.95rem;
  color: rgba(251,209,157,0.65);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── MAIN CONTENT ── */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 1.2rem;
}

/* ── ARTICLE CARDS ── */
.article-grid { display: flex; flex-direction: column; gap: 1rem; }

.article-card {
  background: var(--white);
  border: 1px solid rgba(19,25,26,0.06);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  text-decoration: none;
  display: block;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover { transform: translateX(4px); box-shadow: 0 6px 28px rgba(19,25,26,0.14); }
.article-card.gold-border { border-left-color: var(--gold); }
.article-card.brown-border { border-left-color: var(--brown); }

.article-tag { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); font-weight: 900; margin-bottom: 0.4rem; }
.article-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); line-height: 1.35; margin-bottom: 0.4rem; }
.article-excerpt { font-size: 0.88rem; color: var(--ink-muted); line-height: 1.6; }
.article-coming { font-size: 0.75rem; color: rgba(19,25,26,0.3); font-style: italic; margin-top: 0.3rem; }

/* ── ARTICLE BODY (article pages) ── */
.article-body { font-size: 1.05rem; line-height: 1.9; color: var(--ink-mid); }
.article-body p { margin-bottom: 1.4rem; }
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body em { font-style: italic; color: var(--orange); }
.article-body a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 3px; font-weight: 700; }
.article-body a:hover { color: var(--orange); }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--orange);
  padding: 0.8rem 1.2rem;
  margin: 2rem 0;
  background: rgba(226,115,13,0.06);
  border-radius: 0 10px 10px 0;
}
.pull-quote p { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.6; margin: 0 !important; }

/* ── CALLOUT BOX ── */
.callout { background: var(--dark); border-radius: 14px; padding: 1.5rem 1.6rem; margin: 2rem 0; }
.callout-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 900; color: var(--gold); margin-bottom: 0.8rem; }
.callout-steps { display: flex; flex-direction: column; gap: 0.8rem; }
.callout-step { display: flex; gap: 1rem; align-items: flex-start; }
.callout-num { width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 0.8rem; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.05rem; }
.callout-text { font-size: 0.92rem; color: rgba(251,209,157,0.9); line-height: 1.6; }
.callout-text strong { color: var(--cream); }
.callout-text a { color: var(--gold); font-weight: 700; }

/* ── ARTICLE DIVIDER ── */
.article-divider { height: 3px; background: linear-gradient(90deg, var(--brown), var(--orange), var(--gold)); opacity: 0.3; margin: 2.5rem 0; border-radius: 2px; }

/* ── CTA BUTTONS ── */
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2.5rem; }
.cta-btn { padding: 0.85rem 1.6rem; border-radius: 50px; font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.05em; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; box-shadow: 0 3px 12px rgba(19,25,26,0.15); display: inline-block; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 18px rgba(19,25,26,0.22); }
.cta-btn.primary { background: var(--orange); color: var(--white); }
.cta-btn.secondary { background: var(--dark); color: var(--cream); }
.cta-btn.outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); box-shadow: none; }

/* ── FOOTER ── */
footer { background: var(--dark-deep); padding: 1.5rem; text-align: center; margin-top: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--cream); font-weight: 700; margin-bottom: 0.3rem; }
.footer-logo em { color: var(--orange); font-style: italic; }
.footer-note { font-size: 0.82rem; font-weight: 700; color: rgba(251,209,157,0.55); line-height: 1.6; max-width: 400px; margin: 0 auto 0.4rem; }
.footer-contact a { color: rgba(251,209,157,0.4); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--orange); }

/* ── MOBILE ── */
@media (max-width: 600px) {
  .nav-top { height: 46px; padding: 0 1rem; }
  .nav-logo { font-size: 0.9rem; }
  .nav-links { padding: 0.7rem 0.5rem; gap: 0; }
  .nav-link { padding: 0.4rem 0.5rem; font-size: 0.65rem; }
  .cta-row { flex-direction: column; }
}
