@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@400;700&family=Source+Sans+3:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
  --bg: #f7f5e7;
  --paper: #ffffff;
  --text: #141412;
  --muted: #7d7b6d;
  --border: #d4d0ba;
  --soft-border: #ededed;
  --accent: #21759b;
  --accent-hover: #d54e21;
  --warm: #220e10;
  --warm-hover: #db572f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Source Sans 3", "Source Sans Pro", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-hover);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

code,
kbd,
pre,
samp {
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
}

pre {
  overflow: auto;
  margin: 1.2rem 0;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
  background: #f5f5f5;
  border: 1px solid var(--soft-border);
}

blockquote {
  margin: 24px 40px;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
}

blockquote cite,
blockquote small {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

table {
  width: 100%;
  margin: 0 0 20px;
  border-collapse: collapse;
  border-bottom: 1px solid var(--soft-border);
}

th,
td {
  border-top: 1px solid var(--soft-border);
  padding: 6px 10px 6px 0;
  text-align: left;
  vertical-align: top;
}

.page-shell {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  background: var(--paper);
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
}

.site-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: block;
  min-height: 200px;
  padding: 0;
  color: inherit;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  display: none;
}

.brand-copy {
  display: block;
}

.brand-copy strong {
  display: block;
  padding: 58px 0 10px;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  font-weight: 700;
  color: var(--text);
}

.brand-copy small {
  display: block;
  margin: 0;
  font: 300 italic clamp(1.15rem, 2vw, 1.5rem) "Source Sans 3", "Source Sans Pro", Helvetica, Arial, sans-serif;
  color: var(--muted);
}

.site-nav {
  margin: 0 -20px;
  padding: 0 40px 0 0;
  min-height: 45px;
  background: var(--bg);
  border-top: 1px solid #f7f5e7;
}

.site-nav a {
  display: inline-block;
  padding: 15px 20px;
  color: var(--text);
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--warm);
  color: #ffffff;
  text-decoration: none;
}

.site-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.hero {
  display: grid;
  gap: 14px;
  padding: 20px 0 10px;
}

.hero h1,
.page-title,
.archive-title,
.post-title {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

.hero p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.button {
  display: inline-block;
  padding: 11px 24px 10px;
  border: none;
  border-bottom: 3px solid #b93207;
  border-radius: 2px;
  background: linear-gradient(to bottom, #e05d22 0%, #d94412 100%);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, #ed6a31 0%, #e55627 100%);
  text-decoration: none;
}

.button.secondary {
  background: linear-gradient(to bottom, #f7f5e7 0%, #f0eedc 100%);
  color: var(--accent);
  border: 1px solid #c3c0ab;
  border-bottom: 3px solid #b5b29c;
}

.button.secondary:hover,
.button.secondary:focus {
  color: var(--accent-hover);
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f0 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.stat-card {
  padding: 16px 18px;
  border: 1px solid var(--soft-border);
  background: #ffffff;
}

.stat-card strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.45rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
  gap: 24px;
  margin-top: 24px;
}

.content-panel,
.sidebar-panel,
.article-card,
.archive-controls {
  border: 1px solid var(--soft-border);
  background: #ffffff;
}

.content-panel,
.sidebar-panel {
  padding: 18px 0 0;
}

.panel-title,
.section-title {
  margin: 0 0 12px;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.3;
}

.content-panel .section-title,
.sidebar-panel .section-title {
  padding: 0 20px;
}

.list-grid {
  display: grid;
  gap: 0;
}

.post-card,
.page-card {
  border-top: 1px solid #f0f0f0;
}

.post-card:first-child,
.page-card:first-child {
  border-top: 0;
}

.post-card-link {
  display: block;
  padding: 16px 20px;
  color: inherit;
  text-decoration: none;
}

.post-card-link:hover {
  text-decoration: none;
  background: rgba(247, 245, 231, 0.65);
}

.post-card-link:hover h3 {
  color: var(--accent-hover);
}

.post-card h3 {
  margin: 0 0 6px;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--text);
}

.post-card-meta,
.meta-line,
.entry-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-card-excerpt {
  margin: 0;
  color: var(--text);
}

.dot {
  opacity: 0.65;
}

.archive-controls {
  padding: 16px;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.archive-controls input,
.archive-controls select {
  width: 100%;
  padding: 5px;
  border: 2px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.archive-controls input:focus,
.archive-controls select:focus {
  border-color: #c3c0ab;
  outline: 0;
}

.archive-section {
  display: grid;
  gap: 24px;
  margin-top: 20px;
}

.year-group {
  padding-top: 0;
  border-top: 0;
}

.year-group h3 {
  margin: 0 0 12px;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.3;
}

.article-card {
  padding: 40px 0;
}

.article-head,
.article-content,
.article-footer,
.entry-header,
.entry-content,
.entry-meta {
  max-width: 604px;
  margin-left: auto;
  margin-right: auto;
}

.article-head {
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: 0;
}

.post-title,
.entry-title {
  margin: 0 0 5px;
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
}

.article-content,
.entry-content {
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content figure {
  margin: 1.2rem 0;
}

.article-content img {
  border: 0;
}

.article-content blockquote {
  margin: 24px 40px;
  padding: 0;
  border-left: 0;
  color: #220e10;
}

.article-content blockquote > * {
  margin-left: 0;
}

.article-content code {
  padding: 0;
  background: transparent;
  border: 0;
}

.article-content pre {
  margin: 20px 0;
}

.article-footer {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid #ededed;
  display: grid;
  gap: 10px;
}

.entry-meta {
  clear: both;
  font-size: 14px;
  line-height: 1.7;
}

.entry-meta a {
  color: #bc360a;
}

.entry-meta a:hover,
.entry-meta a:focus {
  color: #ea9629;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 2px;
  background: #f7f5e7;
  color: #444444;
  font-size: 0.88rem;
}

.post-nav {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.post-nav a {
  display: block;
  padding: 12px 14px;
  background: #f7f5e7;
}

.site-footer {
  max-width: 1600px;
  margin: 0 auto;
  padding: 22px 20px 26px;
  background: var(--warm);
  color: #f7f5e7;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-header {
    padding: 0 12px;
  }

  .site-nav {
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .site-main {
    padding: 0 12px 32px;
  }

  .brand-copy strong {
    padding-top: 40px;
    font-size: 2.4rem;
  }

  .site-nav {
    margin: 0 -12px;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .stats-grid,
  .post-nav {
    grid-template-columns: 1fr;
  }

  .article-card {
    padding: 28px 0;
  }

  .article-head,
  .article-content,
  .article-footer,
  .entry-header,
  .entry-content,
  .entry-meta {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Twenty Thirteen second pass */
.page-shell {
  max-width: 1600px;
  background: #ffffff;
  border-left: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
}

.site-header {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand {
  display: block;
  min-height: 230px;
}

.brand-mark {
  display: none;
}

.brand-copy strong,
.site-title {
  display: block;
  padding: 58px 0 10px;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  line-height: 1;
  color: #141412;
}

.brand-copy small,
.site-description {
  display: block;
  margin: 0;
  font: 300 italic clamp(1.15rem, 2vw, 1.5rem) "Source Sans 3", "Source Sans Pro", Helvetica, Arial, sans-serif;
  color: #7d7b6d;
}

.site-nav {
  max-width: 1080px;
  margin: 0 -20px;
  padding: 0 40px 0 0;
  min-height: 45px;
  background: #f7f5e7;
  border-top: 1px solid #f7f5e7;
}

.site-nav .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-menu li {
  display: inline-block;
  position: relative;
}

.site-nav .nav-menu a {
  display: inline-block;
  padding: 15px 20px;
  color: #141412;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
}

.site-nav .nav-menu li:hover > a,
.site-nav .nav-menu li a:hover,
.site-nav .nav-menu li:focus > a,
.site-nav .nav-menu li a:focus {
  background: #220e10;
  color: #ffffff;
  text-decoration: none;
}

.site-nav .nav-menu .current-menu-item > a,
.site-nav .nav-menu .current_page_item > a,
.site-nav .nav-menu .current-menu-ancestor > a,
.site-nav .nav-menu .current_page_ancestor > a {
  color: #bc360a;
  font-style: italic;
}

.site-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.hero {
  padding: 20px 0 12px;
}

.hero h1 {
  max-width: 14ch;
}

.content-grid,
.content-layout {
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.9fr);
  align-items: start;
  gap: 24px;
  margin-top: 24px;
}

.content-area {
  min-width: 0;
}

.content-panel,
.sidebar-panel,
.article-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.content-panel,
.sidebar-panel {
  padding: 0;
}

.section-title,
.panel-title,
.widget-title,
.year-group h3 {
  font-family: "Bitter", Georgia, serif;
}

.content-panel .section-title,
.sidebar-panel .section-title {
  padding: 0;
  margin-bottom: 14px;
}

.sidebar-container {
  min-width: 0;
}

.widget-area {
  padding-top: 4px;
}

.widget {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ededed;
}

.widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.widget-title {
  margin: 0 0 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ededed;
  color: #636363;
  font-family: "Source Sans 3", "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2.18;
  text-transform: uppercase;
}

.widget-content {
  color: #444444;
  font-size: 14px;
  line-height: 2;
}

.widget-content p {
  margin: 0 0 12px;
}

.widget-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  border-top: 1px solid #f0f0f0;
}

.widget-list li:first-child {
  border-top: 0;
}

.widget-list a {
  color: #21759b;
  font-size: 15px;
}

.widget-list a:hover,
.widget-list a:focus {
  color: #d54e21;
}

.widget-meta {
  color: #7d7b6d;
  font-size: 13px;
  white-space: nowrap;
}

.widget-empty {
  margin: 0;
  color: #7d7b6d;
}

.archive-controls {
  margin-top: 0;
  padding: 14px;
  background: #f7f5e7;
  border: 1px solid #d4d0ba;
}

.archive-section {
  margin-top: 18px;
}

.year-group {
  border-top: 0;
  padding-top: 0;
}

.year-group h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.3;
}

.post-card,
.page-card {
  border-top: 1px solid #ededed;
}

.post-card-link {
  padding: 18px 0;
}

.post-card h3 {
  font-size: 1.25rem;
}

.article-card {
  padding: 40px 0;
}

.article-head,
.article-content,
.article-footer,
.entry-header,
.entry-content,
.entry-meta {
  max-width: 604px;
}

.article-head {
  padding-bottom: 0;
  margin-bottom: 30px;
  border-bottom: 0;
}

.entry-header {
  margin-bottom: 30px;
}

.article-content ul,
.article-content ol {
  margin: 16px 0;
  padding-left: 40px;
}

.article-content blockquote {
  margin: 24px 40px;
  padding: 0;
  border-left: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: #220e10;
}

.article-content pre {
  padding: 20px;
  border: 1px solid #ededed;
}

.post-title,
.entry-title {
  margin: 0 0 5px;
  font-size: clamp(2.35rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
}

.article-content,
.entry-content {
  font-size: 1.05rem;
  line-height: 1.75;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.article-content p {
  margin: 0 0 24px;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  clear: both;
  font-family: "Bitter", Georgia, serif;
  line-height: 1.3;
}

.article-content h1 {
  font-size: 48px;
  margin: 33px 0;
}

.article-content h2 {
  font-size: 30px;
  margin: 25px 0;
}

.article-content h3 {
  font-size: 22px;
  margin: 22px 0;
}

.article-content h4 {
  font-size: 20px;
  margin: 25px 0;
}

.article-content h5 {
  font-size: 18px;
  margin: 30px 0;
}

.article-content h6 {
  font-size: 16px;
  margin: 36px 0;
}

.article-content a {
  color: #bc360a;
}

.article-content a:hover,
.article-content a:focus {
  color: #ea9629;
}

.article-content ul,
.article-content ol {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

.article-content li > ul,
.article-content li > ol {
  margin: 0;
}

.article-content figure {
  margin: 0 0 24px;
}

.article-content figure.wp-block-image {
  margin: 0 0 24px;
}

.article-content img.alignleft,
.article-content .wp-caption.alignleft {
  margin-left: -60px;
}

.article-content img.alignright,
.article-content .wp-caption.alignright {
  margin-right: -60px;
}

.article-content table {
  border-bottom: 1px solid #ededed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 2;
  margin: 0 0 20px;
}

.article-content blockquote {
  font-size: 24px;
  line-height: 1.5;
}

.article-content blockquote cite,
.article-content blockquote small {
  font-size: 16px;
}

.article-content code,
.article-content kbd,
.article-content pre,
.article-content samp {
  font-size: 14px;
}

.entry-meta {
  clear: both;
  font-size: 14px;
  line-height: 1.7;
}

.entry-meta a {
  color: #bc360a;
}

.entry-meta a:hover,
.entry-meta a:focus {
  color: #ea9629;
}

.article-footer {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid #ededed;
}

.pill {
  background: #f7f5e7;
}

.post-nav a {
  background: #f7f5e7;
}

.posts-index .page-header,
.archive-page .archive-header,
.pages-index .page-header {
  margin: 0 -20px 24px;
  padding: 24px 20px 22px;
  background: #e8e5ce;
  border-top: 1px solid #d4d0ba;
  border-bottom: 1px solid #d4d0ba;
}

.posts-index .page-header p,
.archive-page .archive-header p,
.pages-index .page-header p {
  margin: 0 0 12px;
  max-width: 1040px;
  color: #444444;
  font-size: 16px;
  line-height: 1.7;
}

.posts-index .page-header .page-title,
.archive-page .archive-header .archive-title,
.pages-index .page-header .page-title {
  margin: 0 0 4px;
  font: 300 italic 30px "Source Sans 3", "Source Sans Pro", Helvetica, Arial, sans-serif;
  color: #141412;
}

.posts-index .page-header .meta-line,
.archive-page .archive-header .meta-line,
.pages-index .page-header .meta-line {
  margin-bottom: 8px;
  color: #7d7b6d;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.posts-index .content-panel,
.archive-page .content-area,
.pages-index .content-area {
  border: 0;
  background: transparent;
}

.posts-index .content-panel {
  padding-top: 0;
}

.pages-index .content-panel {
  padding-top: 0;
}

.posts-index .list-grid,
.archive-page .list-grid {
  display: block;
}

.posts-index .post-card,
.archive-page .post-card,
.pages-index .page-card {
  padding: 20px 0;
  border-top: 1px solid #ededed;
  background: transparent;
}

.posts-index .post-card:first-child,
.archive-page .post-card:first-child,
.pages-index .page-card:first-child {
  border-top: 0;
}

.posts-index .entry-header,
.archive-page .entry-header,
.pages-index .entry-header {
  margin-bottom: 10px;
}

.posts-index .entry-title,
.archive-page .entry-title,
.pages-index .entry-title {
  margin: 0 0 5px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
}

.posts-index .entry-title a,
.archive-page .entry-title a,
.pages-index .entry-title a {
  color: #141412;
}

.posts-index .entry-title a:hover,
.posts-index .entry-title a:focus,
.archive-page .entry-title a:hover,
.archive-page .entry-title a:focus,
.pages-index .entry-title a:hover,
.pages-index .entry-title a:focus {
  color: #ea9629;
}

.posts-index .entry-meta,
.archive-page .entry-meta,
.pages-index .entry-meta {
  margin: 0;
  color: #7d7b6d;
  font-size: 14px;
  line-height: 1.7;
}

.posts-index .entry-summary,
.archive-page .entry-summary,
.pages-index .entry-summary {
  margin: 0;
  color: #444444;
  font-size: 15px;
  line-height: 1.75;
}

.posts-index .entry-summary p,
.archive-page .entry-summary p,
.pages-index .entry-summary p {
  margin: 0;
}

.archive-page .archive-controls {
  margin: 0 0 24px;
  padding: 16px 18px;
  background: #e8e5ce;
  border: 1px solid #d4d0ba;
}

.archive-page .archive-controls input,
.archive-page .archive-controls select {
  border-color: #d4d0ba;
}

.archive-page .year-group {
  margin-bottom: 28px;
}

.archive-page .year-group h3 {
  margin: 0 0 10px;
  font: 300 italic 24px "Source Sans 3", "Source Sans Pro", Helvetica, Arial, sans-serif;
  color: #141412;
}

.site-footer {
  max-width: 1600px;
  padding: 22px 20px 26px;
  background: #220e10;
  color: #f7f5e7;
}

@media (max-width: 960px) {
  .content-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    padding: 0 12px;
  }

  .site-nav {
    margin: 0 -12px;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .site-main {
    padding: 0 12px 32px;
  }

  .brand-copy strong {
    padding-top: 40px;
    font-size: 2.4rem;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .article-card {
    padding: 28px 0;
  }

  .article-head,
  .article-content,
  .article-footer,
  .entry-header,
  .entry-content,
  .entry-meta {
    max-width: none;
  }

  .posts-index .page-header,
  .archive-page .archive-header {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .posts-index .entry-title,
  .archive-page .entry-title,
  .pages-index .entry-title {
    font-size: 20px;
  }

  .widget-list li {
    flex-wrap: wrap;
  }
}

/* Landing-wide theme override */
:root {
  --bg: #f7efe2;
  --paper: rgba(255, 255, 255, 0.9);
  --text: #221913;
  --muted: #7a685a;
  --border: rgba(226, 210, 188, 0.95);
  --soft-border: rgba(226, 210, 188, 0.6);
  --accent: #a04f0f;
  --accent-hover: #df6c1f;
  --warm: #23150f;
  --warm-hover: #d8611e;
}

body {
  background: radial-gradient(circle at top left, #fff8ef 0, #f7efe2 34%, #f1e5d4 100%);
  color: var(--text);
}

.page-shell {
  max-width: 1600px;
  background: transparent;
  border: 0;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  padding: 20px 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, #e8922a 0%, #cb6510 100%);
  color: #ffffff;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(172, 95, 22, 0.18);
}

.brand-copy strong,
.site-title {
  padding-top: 0;
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  letter-spacing: -0.03em;
}

.brand-copy small,
.site-description {
  font-style: normal;
  font-size: 1rem;
  color: var(--muted);
  max-width: 32ch;
}

.site-nav {
  margin: 0;
  padding: 10px 0 0;
  min-height: 0;
  background: transparent;
  border: 0;
}

.site-nav .nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-nav .nav-menu li {
  display: block;
}

.site-nav .nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.site-nav .nav-menu li:hover > a,
.site-nav .nav-menu li a:hover,
.site-nav .nav-menu li:focus > a,
.site-nav .nav-menu li a:focus {
  border-color: rgba(226, 210, 188, 0.9);
  background: rgba(255, 255, 255, 0.93);
  color: var(--accent-hover);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(110, 73, 33, 0.08);
}

.site-nav .nav-menu .current-menu-item > a,
.site-nav .nav-menu .current_page_item > a,
.site-nav .nav-menu .current-menu-ancestor > a,
.site-nav .nav-menu .current_page_ancestor > a {
  border-color: rgba(226, 210, 188, 0.95);
  background: rgba(255, 255, 255, 0.95);
  color: #9b5717;
  font-style: normal;
  box-shadow: 0 12px 26px rgba(110, 73, 33, 0.09);
}

.site-main {
  max-width: 1240px;
  padding: 28px 24px 48px;
}

.hero {
  gap: 16px;
  padding: 12px 0 18px;
}

.hero h1,
.page-title,
.archive-title,
.post-title {
  font-family: "Bitter", Georgia, serif;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 4.9rem);
  line-height: 0.95;
}

.hero p,
.page-header p,
.archive-header p,
.entry-summary,
.article-content,
.widget-content,
.post-card-excerpt {
  color: var(--muted);
}

.meta-line {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9b5717;
}

.hero-actions {
  gap: 12px;
}

.button {
  border-radius: 999px;
  border-bottom: 0;
  background: linear-gradient(180deg, #e78b25 0%, #cc6310 100%);
  box-shadow: 0 14px 28px rgba(170, 91, 20, 0.18);
}

.button.secondary {
  border: 1px solid rgba(225, 205, 179, 0.95);
  background: rgba(255, 255, 255, 0.82);
  color: #9b5717;
}

.button.secondary:hover,
.button.secondary:focus {
  color: var(--accent-hover);
  background: rgba(255, 255, 255, 0.95);
}

.stats-grid {
  gap: 16px;
  margin-top: 18px;
}

.stat-card {
  padding: 16px 18px;
  border: 1px solid rgba(226, 210, 188, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(91, 57, 24, 0.08);
}

.stat-card strong {
  color: var(--text);
}

.content-grid,
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  align-items: start;
  gap: 24px;
  margin-top: 24px;
}

.content-panel,
.sidebar-panel,
.article-card,
.archive-controls,
.widget,
.post-card,
.page-card {
  border: 1px solid rgba(226, 210, 188, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(74, 45, 16, 0.08);
}

.content-panel,
.sidebar-panel {
  border-radius: 28px;
  padding: 18px 0 0;
}

.panel-title,
.section-title,
.widget-title,
.year-group h3 {
  font-family: "Bitter", Georgia, serif;
  color: var(--text);
}

.list-grid {
  display: grid;
  gap: 16px;
}

.post-card,
.page-card {
  margin: 0;
  padding: 18px 20px;
  border-radius: 24px;
}

.post-card h3,
.page-card h3 {
  font-family: "Bitter", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.3;
}

.post-card-meta,
.entry-meta {
  color: var(--muted);
}

.post-card:hover,
.page-card:hover {
  box-shadow: 0 20px 42px rgba(74, 45, 16, 0.1);
}

.archive-controls {
  padding: 18px;
  border-radius: 24px;
}

.archive-controls input,
.archive-controls select {
  border: 1px solid rgba(226, 210, 188, 0.95);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
}

.archive-section {
  gap: 16px;
}

.year-group h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.article-card {
  padding: 28px 0 30px;
  border-radius: 30px;
}

.article-head,
.article-content,
.article-footer,
.entry-header,
.entry-content,
.entry-meta {
  max-width: 760px;
}

.post-title,
.entry-title {
  margin-bottom: 8px;
  font-size: clamp(2.45rem, 5vw, 4.15rem);
  line-height: 0.98;
  font-weight: 700;
}

.article-content,
.entry-content {
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: "Bitter", Georgia, serif;
  color: var(--text);
}

.article-content a,
.entry-meta a,
.widget-list a {
  color: var(--accent);
}

.article-content a:hover,
.article-content a:focus,
.entry-meta a:hover,
.entry-meta a:focus,
.widget-list a:hover,
.widget-list a:focus {
  color: var(--accent-hover);
}

.article-content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid #dc7a19;
  border-radius: 18px;
  background: rgba(247, 241, 231, 0.8);
  color: #47382a;
}

.article-content pre {
  padding: 20px;
  border: 1px solid rgba(226, 210, 188, 0.9);
  border-radius: 20px;
  background: #fbf7ef;
}

.article-content img,
.article-content figure.wp-block-image,
.article-content .wp-caption {
  border-radius: 20px;
}

.article-footer {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 210, 188, 0.9);
  display: grid;
  gap: 12px;
}

.pill {
  border: 1px solid rgba(226, 210, 188, 0.9);
  border-radius: 999px;
  background: rgba(247, 241, 231, 0.95);
  color: #5d4f45;
}

.post-nav a {
  border: 1px solid rgba(226, 210, 188, 0.9);
  border-radius: 18px;
  background: rgba(247, 241, 231, 0.95);
}

.posts-index .page-header,
.archive-page .archive-header,
.pages-index .page-header {
  margin: 0;
  padding: 12px 0 6px;
  background: transparent;
  border: 0;
  display: grid;
  gap: 14px;
}

.posts-index .page-header p,
.archive-page .archive-header p,
.pages-index .page-header p {
  max-width: 72ch;
}

.posts-index .page-header .page-title,
.archive-page .archive-header .archive-title,
.pages-index .page-header .page-title {
  margin: 0;
  font-family: "Bitter", Georgia, serif;
  font-size: clamp(2.55rem, 5vw, 4.2rem);
  line-height: 0.98;
  font-weight: 700;
  color: var(--text);
}

.posts-index .content-panel,
.archive-page .content-area,
.pages-index .content-area {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.posts-index .post-card,
.archive-page .post-card,
.pages-index .page-card {
  border-radius: 24px;
}

.posts-index .entry-title,
.archive-page .entry-title,
.pages-index .entry-title {
  margin-bottom: 6px;
  font-size: 1.55rem;
  line-height: 1.25;
}

.archive-page .year-group {
  margin-bottom: 26px;
}

.archive-page .year-group h3 {
  font-family: "Bitter", Georgia, serif;
  font-size: 1.45rem;
  color: var(--text);
}

.widget {
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 24px;
}

.widget-title {
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(226, 210, 188, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a7a6a;
}

.widget-content {
  font-size: 0.98rem;
  line-height: 1.75;
}

.widget-list li {
  border-top: 1px solid rgba(226, 210, 188, 0.55);
}

.site-footer {
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  background: transparent;
  color: #8c7c6d;
  border-top: 1px solid rgba(226, 210, 188, 0.75);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px 0;
  }

  .site-nav {
    padding-top: 0;
  }

  .site-nav .nav-menu {
    justify-content: flex-start;
  }

  .content-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .site-main {
    padding: 24px 12px 36px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .brand-copy strong {
    font-size: 2.25rem;
  }

  .site-nav .nav-menu a {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero h1,
  .posts-index .page-header .page-title,
  .archive-page .archive-header .archive-title,
  .pages-index .page-header .page-title {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .article-card {
    padding: 24px 0 26px;
  }

  .article-head,
  .article-content,
  .article-footer,
  .entry-header,
  .entry-content,
  .entry-meta {
    max-width: none;
  }

  .stats-grid,
  .post-nav {
    grid-template-columns: 1fr;
  }
}
