:root {
  --an-terra: #b5532a;
  --an-clay: #7a3b22;
  --an-ochre: #d9a441;
  --an-cream: #faf4ea;
  --an-sand: #f1e7d6;
  --an-ink: #2e231c;
  --an-muted: #8a7766;
  --an-white: #ffffff;
  --an-radius: 10px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #2e231c;
  background-color: #faf4ea;
  line-height: 1.6;
}
h1, h2, h3, h4, .site-brand, .footer-brand, .section-title, .article-title, .hero-title, .post-card-title, .aside-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: #7a3b22;
}

/* header */
.site-header { background: #7a3b22; box-shadow: 0 2px 12px rgba(0,0,0,.1); }
.site-nav { padding-top: .6rem; padding-bottom: .6rem; }
.site-brand { color: #ffffff !important; font-size: 1.5rem; line-height: 1; display: flex; flex-direction: column; }
.site-brand-sub { font-family: 'Inter', sans-serif; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #d9a441; font-weight: 500; margin-top: 2px; }
.site-nav .nav-link { color: rgba(255,255,255,.9); font-weight: 500; }
.site-nav .nav-link:hover, .site-nav .nav-link:focus { color: #d9a441; }
.site-nav .dropdown-menu { border: none; border-radius: var(--an-radius); box-shadow: 0 8px 30px rgba(0,0,0,.14); }
.site-nav .dropdown-item:hover { background: #f1e7d6; color: #b5532a; }
.navbar-toggler { border-color: rgba(255,255,255,.4); }
.navbar-toggler-icon { filter: invert(1); }

/* hero */
.hero--home { background: linear-gradient(135deg, #b5532a, #7a3b22); color: #ffffff; padding: 4.5rem 0; }
.hero-copy { max-width: 760px; }
.hero-title { color: #ffffff; font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.1; margin-bottom: 1rem; }
.hero-sub { font-size: 1.1rem; opacity: .95; }
.eyebrow { color: #d9a441; text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; font-weight: 600; display: block; margin-bottom: .5rem; }

/* sections */
.section { padding: 4rem 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 2rem; }

/* prose / article */
.site-prose { max-width: 820px; }
.article-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1.5rem; }
.site-prose img, .site-block--image img, .site-block--gallery img { max-width: 100%; height: auto; border-radius: 8px; }
.site-block--paragraph { margin-bottom: 1.1rem; }
.site-block--image { margin: 1.5rem 0; }
.article-summary { color: #8a7766; border-left: 4px solid #d9a441; padding-left: 1rem; }
.site-table td, .site-table th { vertical-align: top; }

/* content body links visible (scoped) */
.site-prose a, .site-block--paragraph a, .article-body a, .category-desc a {
  color: #b5532a; text-decoration: underline; text-decoration-color: #d9a441;
}
.site-prose a:hover, .site-block--paragraph a:hover, .article-body a:hover { color: #7a3b22; }

/* aside */
.site-aside .aside-widget { background: #f1e7d6; border-radius: var(--an-radius); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.aside-title { font-size: 1.1rem; color: #7a3b22; margin-bottom: .75rem; }
.aside-links { list-style: none; padding-left: 0; margin: 0; }
.aside-links li { margin-bottom: .5rem; }
.aside-links a { color: #b5532a; text-decoration: none; }
.aside-links a:hover { text-decoration: underline; text-decoration-color: #d9a441; }

/* cards */
.post-card { background: #ffffff; border: 1px solid #ece0cd; border-radius: var(--an-radius); overflow: hidden; box-shadow: 0 4px 16px rgba(122,59,34,.06); transition: transform .3s ease, box-shadow .3s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 8px 26px rgba(122,59,34,.12); }
.post-card-img { width: 100%; height: 200px; object-fit: cover; }
.post-card-body { padding: 1.25rem 1.5rem; }
.post-card-title { font-size: 1.2rem; margin-bottom: .5rem; }
.post-card-title a { color: #7a3b22; text-decoration: none; }
.post-card-title a:hover { color: #b5532a; }

/* category cards reuse */
.route-card { background:#fff; border:1px solid #ece0cd; border-radius:var(--an-radius); overflow:hidden; box-shadow:0 4px 16px rgba(122,59,34,.06); }
.route-card-img { width:100%; height:200px; object-fit:cover; }
.route-card-body { padding:1.25rem 1.5rem; }
.route-card-title a { color:#7a3b22; text-decoration:none; }
.route-card-link { color:#b5532a; font-weight:600; text-decoration:none; }
.route-card-link:hover { text-decoration:underline; }
.route-card--minimal { border:none; border-left:3px solid #d9a441; border-radius:0; box-shadow:none; }

/* breadcrumbs */
.site-breadcrumbs { background: #f1e7d6; padding: .6rem 0; }
.site-breadcrumbs .breadcrumb { margin: 0; }
.site-breadcrumbs a { color: #b5532a; text-decoration: none; }

/* ToC */
.article-toc { background: #f1e7d6; border-radius: var(--an-radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.article-toc a { color: #b5532a; text-decoration: none; }

/* footer */
.site-footer { background: #2e231c; color: rgba(255,255,255,.82); padding: 3.5rem 0 1.5rem; }
.footer-brand { color: #ffffff; font-size: 1.5rem; margin-bottom: .75rem; }
.footer-tagline { color: rgba(255,255,255,.7); }
.footer-col-title { color: #d9a441; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; margin-bottom: 1rem; }
.footer-links { list-style: none; padding-left: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-links a:hover { color: #d9a441; }
.footer-links--inline { columns: 2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2.5rem; padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,.6); }

@media (max-width: 768px) {
  .article-main-image { max-width: 100%; float: none !important; }
}
