:root {
  --primary: #d6202a;
  --primary-dark: #a4161d;
  --accent: #f0a830;
  --accent-soft: #fbe7c6;
  --cream: #fff8ef;
  --ink: #2b2320;
  --muted: #7a6e66;
  --surface: #ffffff;
  --border: #ecdfce;
}

html { font-size: 17px; }
body {
  font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #2b2320;
  background-color: #fff8ef;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1 0 auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'PT Sans', sans-serif;
  color: #d6202a;
  font-weight: 700;
  line-height: 1.25;
}
h1, .page-title { font-size: 40px; font-weight: 700; margin: .5em 0 .6em; }
h2, .block-heading { font-size: 30px; font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }

/* ── Header / Navbar ────────────────────────────────── */
.site-header .title-bar { background-color: #d6202a; }
.site-header .title-bar-title .brand-link { color: #ffffff; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.top-bar.site-nav { background-color: #d6202a; padding: .4rem 1rem; }
.top-bar.site-nav .brand-text .brand-link { color: #ffffff; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.3rem; }
.top-bar.site-nav .menu { background: transparent; }
.top-bar.site-nav .menu > li > a { color: #ffffff; font-weight: 700; }
.top-bar.site-nav .menu > li > a:hover { color: #fbe7c6; }
.top-bar.site-nav .submenu { background-color: #ffffff; border: 1px solid var(--border); min-width: 220px; }
.top-bar.site-nav .submenu li a { color: #2b2320; }
.top-bar.site-nav .submenu li a:hover { background-color: #fff8ef; color: #d6202a; }
/* Collapsed-by-default CSS-hover dropdown — the Foundation submenus are
   JS-driven (data-dropdown-menu) but the static build ships no Foundation JS,
   so without this they render expanded on load. Hide them and reveal on
   hover/focus so the nav is a self-contained CSS dropdown (no JS dependency). */
.top-bar.site-nav .is-dropdown-submenu-parent { position: relative; }
.top-bar.site-nav .menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}
.top-bar.site-nav .is-dropdown-submenu-parent:hover > .submenu,
.top-bar.site-nav .is-dropdown-submenu-parent:focus-within > .submenu {
  display: block;
}
.menu-icon { }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(214, 32, 42, .88), rgba(164, 22, 29, .9)),
    url("/assets/images/img_2891d138942a.png") center 42% / cover no-repeat;
  color: #ffffff;
  padding: 64px 0 72px;
  text-align: center;
}
.hero-title { color: #ffffff; font-size: 40px; font-weight: 700; margin-bottom: .3em; }
.hero-lead { color: #ffe9d6; font-size: 1.2rem; max-width: 720px; margin: 0 auto 1.4em; }
.hero-btn-primary { background-color: #f0a830; color: #2b2320; font-weight: 700; border-radius: 26px; padding: .9em 2em; }
.hero-btn-primary:hover { background-color: #e2991f; color: #2b2320; }

/* ── Sections / content ─────────────────────────────── */
.section { padding: 40px 0; }
.site-prose { color: #2b2320; }
.site-prose p, .block-paragraph { margin: 0 0 1.1em; }
.block-image, .article-main-image { max-width: 100%; height: auto; border-radius: 10px; margin: 1em 0; }
@media screen and (min-width: 64em) {
  .article-main-image { float: right; max-width: 33%; margin: 0 0 1em 1.5em; }
}
.article-summary { border-left: 4px solid #f0a830; background: #fbe7c6; padding: .9em 1.2em; border-radius: 0 8px 8px 0; }
.article-dates { font-size: .9rem; color: #7a6e66; }
.block-quote { border-left: 4px solid #d6202a; padding-left: 1.2em; color: #7a6e66; font-style: italic; }
.block-list { margin-left: 1.2em; }
.block-list li { list-style: disc; margin-bottom: .4em; }
.block-table { margin: 1.4em 0; }

/* content body links — scoped, visible */
.site-prose a, .block-paragraph a, .block-list a, .list-item-title-wrap a {
  color: #d6202a; text-decoration: underline; text-decoration-color: rgba(214,32,42,.4);
}
.site-prose a:hover, .block-paragraph a:hover, .list-item-title-wrap a:hover { color: #a4161d; text-decoration-color: #a4161d; }

/* ── Cards / listings ───────────────────────────────── */
.category-grid { margin-top: 1rem; margin-bottom: 2rem; }
.card, .category-card, .listing-card, .default-card { background: #ffffff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.card-title a, .card-section h5 a { color: #d6202a; }
.card-minimal { background: #ffffff; border-left: 3px solid #f0a830; border-radius: 8px; padding: .9em 1.2em; }
.read-more-btn { background-color: #f0a830; color: #2b2320; font-weight: 700; }
.read-more-btn:hover { background-color: #e2991f; }
.block-list-item { padding: .8em 0; border-bottom: 1px solid var(--border); }
.list-item-title-wrap a { font-weight: 700; }
.list-item-excerpt, .listing-card-excerpt { color: #7a6e66; }

/* ── Breadcrumbs ────────────────────────────────────── */
.breadcrumb-bar { background-color: #ffffff; border-bottom: 1px solid var(--border); padding: .6rem 0; }
.breadcrumbs { margin-bottom: 0; }
.breadcrumbs a { color: #d6202a; }

/* ── ToC ────────────────────────────────────────────── */
.toc-box { background: #ffffff; border: 1px solid var(--border); border-radius: 10px; padding: 1em 1.2em; margin-bottom: 1.4em; }
.toc-box h6 { color: #d6202a; font-weight: 700; margin-top: 0; }
.toc-box a { color: #2b2320; }
.sticky-toc { position: sticky; top: 20px; align-self: flex-start; }
.toc-level-3 { padding-left: 1em; }

/* ── Footer ─────────────────────────────────────────── */
.site-footer { background-color: #a4161d; color: #ffe9d6; padding: 32px 0 0; margin-top: 2rem; }
.site-footer .footer-title { color: #ffffff; font-size: 18px; }
.site-footer .footer-about { color: #ffd9bf; }
.site-footer a { color: #ffd9bf; }
.site-footer a:hover { color: #ffffff; text-decoration: underline; }
.footer-links { column-count: 2; }
.footer-copyright { background-color: rgba(0,0,0,.2); color: #ffd9bf; padding: .9em 0; margin-top: 1.4rem; }
.no-bullet { list-style: none; margin-left: 0; }
