:root {
  --primary: #0B6F6A;
  --accent: #2BB3A3;
  --gold: #F2C94C;
  --text: #1F2933;
  --subtle: #E6F3F1;
  --paper: #F9FBFA;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}
a { color: inherit; text-decoration: none; }
.site-shell { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 3px solid var(--subtle);
  border-color: var(--subtle);
  box-shadow: 0 8px 28px rgba(11,111,106,.08);
}
.header-shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 78px; }
.brand-lockup { display: flex; align-items: baseline; gap: 14px; color: var(--primary); }
.brand-mark { font-family: "Fraunces", Georgia, serif; font-size: 2rem; font-weight: 700; letter-spacing: 0; }
.brand-text { font-weight: 700; color: var(--text); }
.site-nav .pure-menu-link { color: var(--primary); font-weight: 700; border-bottom: 2px solid transparent; }
.site-nav .pure-menu-link:first-child { color: var(--accent); }
.site-nav .pure-menu-link:hover, .site-nav .pure-menu-link:focus { background: var(--subtle); border-bottom-color: var(--accent); }
.pure-menu-children { border: 1px solid var(--subtle); box-shadow: 0 16px 40px rgba(31,41,51,.12); }
.site-main { min-height: 70vh; }
.hero-band {
  background: var(--subtle);
  border: 1px solid var(--accent);
  border-width: 0 0 1px;
  padding: 64px 0 42px;
}
.hero-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 48px;
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--primary);
  border-color: var(--gold);
}
.hero-kicker {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .08em;
}
.hero-summary { max-width: 760px; font-size: 1.08rem; }
.content-layout { padding: 48px 0 72px; }
.content-panel {
  background: var(--white);
  border: 1px solid rgba(11,111,106,.16);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 18px 50px rgba(31,41,51,.08);
}
.site-prose { max-width: 820px; }
.site-prose h2, .site-prose h3, .site-prose h4,
.content-card h3 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--primary);
  line-height: 1.25;
}
.site-prose p { margin: 0 0 1.15rem; }
.site-prose a, .site-block--paragraph a, .content-card a, .site-category-meta a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(43,179,163,.45);
  text-underline-offset: 3px;
}
.site-prose a:hover, .site-block--paragraph a:hover, .content-card a:hover, .site-category-meta a:hover {
  color: #084f4b;
  text-decoration-color: var(--gold);
}
.callout-card {
  border-left: 5px solid var(--gold);
  background: #fffaf0;
  padding: 18px 22px;
  margin: 24px 0;
}
.content-card {
  background: var(--white);
  border: 1px solid rgba(11,111,106,.16);
  border-radius: 8px;
  padding: 22px;
  margin: 0 14px 24px 0;
  height: calc(100% - 24px);
}
.content-card img, .media-figure img, .gallery-grid img { max-width: 100%; height: auto; border-radius: 6px; }
.content-card img { width: 100%; max-height: 220px; object-fit: cover; margin-bottom: 14px; }
.table-wrap { overflow-x: auto; margin: 24px 0; }
.pure-table { width: 100%; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.media-figure { margin: 24px 0; }
figcaption { font-size: .9rem; color: #5b6673; margin-top: 8px; }
.breadcrumbs { font-size: .92rem; margin-bottom: 22px; }
.breadcrumbs a { color: var(--primary); text-decoration: underline; }
.sidebar-nav { background: var(--subtle); padding: 18px; border-radius: 8px; }
.article-meta { color: #63707d; font-size: .95rem; margin: 0 0 24px; }
.toc-box { background: var(--subtle); border-radius: 8px; padding: 18px; margin: 22px 0; }
.main-image { float: right; max-width: 33%; margin: 0 0 20px 28px; border-radius: 8px; }
.category-grid { margin-top: 28px; }
.minimal-card { border: 0; border-left: 4px solid var(--accent); box-shadow: none; }
.site-footer { background: var(--primary); color: white; padding: 42px 0; }
.footer-brand strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 2rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.footer-links a { color: white; text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); }
@media (max-width: 760px) {
  .header-shell { align-items: flex-start; flex-direction: column; padding: 16px 24px; }
  .site-nav { white-space: normal; }
  .hero-title { font-size: 36px; }
  .content-panel { padding: 24px; }
  .main-image { float: none; max-width: 100%; margin: 0 0 20px; }
}
@media print {
  .site-header, .site-footer, .breadcrumbs { display: none; }
  body { background: white; color: black; }
  .content-panel { box-shadow: none; border: 0; }
}
