:root {
  --ocean: #0e6f75;
  --ocean-dark: #00555a;
  --saffron: #d98221;
  --sand: #f3e8cf;
  --surface: #fcf9f8;
  --ink: #26333a;
  --muted: #6f797a;
  --line: #d7c8aa;
  --deep: #223946;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  padding-top: 72px;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  z-index: 1000;
  background: #fff;
  padding: .5rem 1rem;
}
.site-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  min-height: 72px;
  background: rgba(252, 249, 248, .94);
  border-bottom: 1px solid rgba(111, 121, 122, .25);
  box-shadow: 0 8px 28px rgba(14, 111, 117, .08);
  white-space: normal;
}
.site-brand {
  color: var(--ocean-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}
.site-nav-list {
  float: right;
  max-width: calc(100% - 260px);
}
.site-header .pure-menu-link {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-header .pure-menu-link:hover,
.site-header .pure-menu-link:focus {
  background: rgba(217, 130, 33, .12);
  color: var(--ocean-dark);
}
.pure-menu-children {
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(34, 57, 70, .16);
}
.site-menu-toggle {
  display: none;
  float: right;
  margin: 1rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ocean-dark);
  padding: .45rem .7rem;
  font-weight: 700;
}
.site-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("/assets/images/img_7d573ecd8b76.png") center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.site-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 85, 90, .35), rgba(14, 111, 117, .72));
}
.site-hero__content {
  position: relative;
  max-width: 860px;
  padding: 3rem 1.25rem;
}
.site-hero h1,
.site-prose h1,
.site-prose h2,
.site-prose h3,
.content-category h1,
.content-category h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.18;
  letter-spacing: 0;
}
.site-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  text-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}
.site-hero p {
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
}
.site-section {
  padding: 64px 0;
}
.site-section--article {
  background: linear-gradient(180deg, var(--sand), var(--surface));
}
.site-panel {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(215, 200, 170, .8);
  border-radius: 4px;
  padding: clamp(1.25rem, 4vw, 3.5rem);
  box-shadow: 0 22px 60px rgba(34, 57, 70, .11);
}
.site-prose {
  max-width: 880px;
  margin: 0 auto;
}
.site-prose--home,
.site-card-grid,
.site-listing-wide {
  max-width: 1040px;
}
.site-prose h1 {
  color: var(--ocean-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.site-prose h2 {
  color: var(--ocean);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  margin-top: 2rem;
}
.site-prose h3 {
  color: var(--ink);
  font-size: 1.35rem;
}
.site-prose p { margin: 0 0 1rem; }
.site-prose a,
.content-category a,
.article-body a,
.site-block--paragraph a {
  color: var(--ocean-dark);
  text-decoration: underline;
  text-decoration-color: rgba(217, 130, 33, .55);
  text-underline-offset: .18em;
}
.site-prose a:hover,
.content-category a:hover,
.article-body a:hover {
  color: var(--saffron);
  text-decoration-color: var(--saffron);
}
.site-figure {
  margin: 1.5rem 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(215, 200, 170, .75);
  background: #fff;
}
.site-figure img,
.site-gallery img,
.content-category img {
  display: block;
  width: 100%;
  height: auto;
}
.site-gallery > div { padding: .5rem; }
.content-card,
.category-card {
  border: 1px solid rgba(215, 200, 170, .85);
  border-top: 4px solid var(--saffron);
  background: #fff;
  padding: 1rem;
  margin: .75rem;
  min-height: 120px;
}
.content-card a,
.category-card h2 a {
  color: var(--ocean-dark);
  font-weight: 700;
}
.category-card__body { padding: 1rem; }
.category-card--minimal .category-card {
  border-top: 0;
  border-left: 4px solid var(--saffron);
  box-shadow: none;
}
.read-more {
  display: inline-block;
  margin-top: .5rem;
  color: var(--saffron);
  font-weight: 700;
}
.site-breadcrumbs {
  margin-bottom: 1.25rem;
  color: var(--muted);
}
.site-breadcrumbs .pure-menu-link {
  padding-left: 0;
  font-size: .85rem;
}
.article-dates,
.category-description,
.article-summary {
  color: var(--muted);
}
.article-summary {
  border-left: 4px solid var(--saffron);
  padding-left: 1rem;
  font-size: 1.1rem;
}
.article-main-image {
  float: right;
  max-width: 34%;
  margin: .35rem 0 1rem 1.5rem;
  border-radius: 4px;
}
.article-toc {
  border: 1px solid var(--line);
  background: #fffaf0;
  padding: 1rem;
  margin: 1.5rem 0;
}
.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}
.site-media-list {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.site-footer {
  background: var(--deep);
  color: rgba(255, 255, 255, .82);
  padding: 48px 0;
}
.footer-col { padding: 0 1rem 1.5rem; }
.footer-col a {
  color: #fff;
  text-decoration: none;
}
.footer-col ul {
  margin: .75rem 0 0;
  padding-left: 1rem;
}
.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, .18);
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, .65);
}
@media (max-width: 920px) {
  body { padding-top: 64px; }
  .site-menu-toggle { display: inline-block; }
  .site-nav-list {
    display: none;
    float: none;
    clear: both;
    max-width: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .site-nav-list.is-open { display: block; }
  .site-nav-list .pure-menu-item {
    display: block;
  }
  .pure-menu-children {
    display: block;
    position: static;
    box-shadow: none;
    border: 0;
    padding-left: 1rem;
  }
  .article-main-image {
    float: none;
    max-width: 100%;
    margin: 1rem 0;
  }
}
