/* Global styles for all non-front-page templates.
   Shares the Living Word Atrium design language with atrium.css:
   same tokens, ambient photo/grain/light layers, biblical serif display type. */

:root {
  color-scheme: dark;
  --bg-base:        #090907;
  --bg-ink:         #11100d;
  --bg-card:        rgba(255, 255, 255, 0.04);
  --surface:        rgba(26, 26, 26, 0.44);
  --surface-strong: rgba(26, 26, 26, 0.78);
  --brand-gold:     #b4874a;
  --brand-gold-lit: #d4a056;
  --brand-brown:    #5d4422;
  --brand-cream:    #e8e0d5;
  --text-primary:   #f5efe6;
  --text-secondary: #cbbca8;
  --text-muted:     #91867a;
  --line:           rgba(232, 224, 213, 0.14);
  --line-strong:    rgba(180, 135, 74, 0.42);
  --shadow:         rgba(0, 0, 0, 0.58);
  --ease:           cubic-bezier(0.16, 1, 0.3, 1);
  --ui:             Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --biblical:       "SBL BibLit", "SBL Hebrew", "Ezra SIL", "Times New Roman", serif;
  --max-w:          800px;
  --header-h:       72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--bg-base);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  /* Base color lives on html: an opaque body background would paint over
     the fixed ambient layers in body::before / body::after. */
  background: transparent;
  color: var(--text-primary);
  font-family: var(--ui);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* ─── Ambient atrium backdrop (photo, gold light, grain) ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(56rem 30rem at 72% -6%, rgba(212, 160, 86, 0.16), transparent 58%),
    radial-gradient(44rem 28rem at 12% 110%, rgba(93, 68, 34, 0.26), transparent 62%),
    linear-gradient(90deg, rgba(5, 5, 4, 0.88), rgba(5, 5, 4, 0.78) 36%, rgba(5, 5, 4, 0.92)),
    linear-gradient(180deg, rgba(5, 5, 4, 0.52), rgba(5, 5, 4, 0.90)),
    url("assets/peplamb-lamb-bg.webp") center / cover no-repeat;
  filter: saturate(0.88) contrast(1.02);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background:
    url("assets/peplamb-overlay.webp") repeat,
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 4px);
}

a { color: var(--brand-gold-lit); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--brand-gold-lit);
  outline-offset: 3px;
}

::selection { background: rgba(180, 135, 74, 0.36); color: var(--brand-cream); }

/* ─── Skip link ─── */
.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 100;
  transform: translateY(-160%);
  padding: .5rem 1rem;
  background: var(--bg-ink);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--text-primary);
  font-size: .875rem;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ─── Site header ─── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  color: var(--brand-cream);
  background: linear-gradient(180deg, rgba(9, 9, 7, 0.94), rgba(9, 9, 7, 0.78));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--brand-cream);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  /* Must be able to shrink on narrow viewports or it pushes the
     nav toggle past the right edge of the header. */
  min-width: 0;
}

.site-logo__name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 1.5rem rgba(180, 135, 74, 0.30);
  flex-shrink: 0;
}

.custom-logo-link img {
  max-height: 40px;
  width: auto;
}

.site-logo:hover,
.custom-logo-link:hover { text-decoration: none; color: var(--brand-gold-lit); }

/* ─── Primary nav ─── */
#site-nav { flex: 1; }

#site-nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: .25rem;
}

#site-nav ul li { position: relative; }

#site-nav ul li a {
  display: block;
  padding: .45rem .8rem;
  color: var(--text-secondary);
  opacity: .78;
  font-size: .9375rem;
  border-radius: 6px;
  text-decoration: none;
  transition: color 180ms var(--ease), opacity 180ms var(--ease), background 180ms var(--ease);
  white-space: nowrap;
}

#site-nav ul li a:hover,
#site-nav ul li a:focus-visible {
  color: var(--brand-cream);
  opacity: 1;
  text-decoration: none;
}

#site-nav ul li.current-menu-item > a,
#site-nav ul li.current_page_item > a,
#site-nav ul li.current-menu-ancestor > a {
  color: var(--brand-gold-lit);
  opacity: 1;
  text-decoration: none;
  text-underline-offset: .9em;
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-decoration-thickness: 1px;
}

/* Dropdown */
#site-nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .375rem 0;
  box-shadow: 0 1.5rem 3rem var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  list-style: none;
  margin: 0;
  z-index: 10;
}

#site-nav ul li:hover > ul,
#site-nav ul li:focus-within > ul { display: block; }

#site-nav ul ul li a {
  border-radius: 0;
  padding: .5rem 1.1rem;
  white-space: normal;
  min-width: 200px;
  max-width: 320px;
}

#site-nav ul ul li a:hover,
#site-nav ul ul li a:focus-visible {
  background: rgba(180, 135, 74, 0.12);
}

/* Nested (third-level) menus open inline beneath their parent */
#site-nav ul ul ul {
  position: static;
  display: block;
  border: none;
  box-shadow: none;
  background: none;
  padding: 0 0 0 1rem;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ─── Mobile nav toggle ─── */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .4rem .55rem;
  color: var(--text-secondary);
  cursor: pointer;
  margin-left: auto;
  line-height: 1;
  transition: color 180ms var(--ease), border-color 180ms var(--ease);
}

.nav-toggle:hover { color: var(--brand-cream); border-color: var(--line-strong); }

@media (max-width: 719px) {
  .nav-toggle { display: flex; align-items: center; }

  #site-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0;
    background: rgba(9, 9, 7, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 49;
    padding: 1rem 1.5rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
  }

  #site-nav.is-open { display: flex; }
  #site-nav > ul { flex-direction: column; width: 100%; gap: .25rem; }
  #site-nav ul ul {
    position: static;
    display: block;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  #site-nav ul li a { font-size: 1.0625rem; padding: .65rem .875rem; white-space: normal; max-width: none; }
}

/* ─── Page wrapper ─── */
#page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

/* ─── Layout row (main + sidebar) ─── */
.layout-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  body.has-sidebar .layout-row {
    grid-template-columns: 1fr 280px;
  }
}

/* ─── Content area ─── */
#main { min-width: 0; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--biblical);
  margin: 1.75em 0 .5em;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: 2.25rem; margin-top: 0; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1.25em; color: var(--text-secondary); }

ul, ol { color: var(--text-secondary); padding-left: 1.5em; }

blockquote {
  margin: 1.75em 0;
  padding: 1.25em 1.75em;
  border-left: 3px solid var(--brand-gold);
  background: var(--surface);
  border-radius: 0 10px 10px 0;
  color: var(--brand-cream);
  font-family: var(--biblical);
  font-size: 1.125em;
  font-style: italic;
  line-height: 1.6;
}

blockquote p { color: inherit; }
blockquote p:last-child { margin-bottom: 0; }

code, pre {
  font-family: "Fira Code", "Cascadia Code", "Courier New", monospace;
  font-size: .875em;
}

code {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: .15em .4em;
}

pre {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25em;
  overflow-x: auto;
  line-height: 1.6;
}

pre code { background: none; padding: 0; }

img, video { max-width: 100%; height: auto; display: block; }

hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}

th, td {
  text-align: left;
  padding: .6rem .875rem;
  border-bottom: 1px solid var(--line);
  color: var(--text-secondary);
}

th { color: var(--text-primary); font-weight: 600; }

/* ─── Eyebrow meta (shared by cards, entries, archives) ─── */
.post-card__meta,
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem 1.25rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-card__meta a,
.entry-meta a { color: var(--text-muted); }

.post-card__meta a:hover,
.entry-meta a:hover { color: var(--brand-gold-lit); text-decoration: none; }

/* ─── Archive header ─── */
.archive-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line-strong);
}

.archive-header h1 {
  margin: 0 0 .5rem;
  font-size: clamp(2.1rem, 4.5vw, 2.9rem);
}

.archive-header h1 span { color: var(--brand-gold-lit); }

.archive-description { color: var(--text-muted); font-size: .9375rem; }
.archive-description p:last-child { margin-bottom: 0; }

/* ─── Post card (index / archive / search) ─── */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  transition: border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.post-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 1.5rem 3rem var(--shadow);
}

.post-card__thumbnail {
  margin: -.5rem -.5rem 1.25rem;
  border-radius: .75rem;
  overflow: hidden;
  background: var(--bg-card);
}

.post-card__thumbnail a { display: block; }

.post-card__thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: opacity 220ms var(--ease);
}

.post-card__thumbnail a:hover img { opacity: .88; }

.post-card__title {
  font-size: 1.6rem;
  line-height: 1.15;
  margin: 0 0 .625rem;
}

.post-card__title a {
  color: var(--brand-cream);
  text-decoration: none;
}

.post-card__title a:hover { color: var(--brand-gold-lit); }

.post-card__meta { margin-bottom: .875rem; }

.post-card__excerpt { color: var(--text-secondary); font-size: .9375rem; }
.post-card__excerpt p { margin: 0; color: inherit; }

/* ─── Single post / page ─── */
.post-thumbnail {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.post-thumbnail img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.entry-header {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line-strong);
}

.entry-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 1rem;
}

.entry-content { max-width: var(--max-w); }
.entry-content a { color: var(--brand-gold-lit); }
.entry-content a:hover { text-decoration: underline; }

.entry-content .wp-block-image,
.entry-content figure { margin: 1.5em 0; }

/* Illuminated initial on single posts */
.single .entry-content > p:first-of-type::first-letter {
  float: left;
  font-family: var(--biblical);
  font-size: 3.4em;
  font-weight: 700;
  line-height: .82;
  padding: .08em .12em 0 0;
  color: var(--brand-gold-lit);
}

.entry-footer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

.page-links { margin: 1.5rem 0; color: var(--text-muted); }

/* ─── Tags / categories ─── */
.post-tags,
.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
}

.post-tags a,
.post-categories a {
  display: inline-block;
  padding: .25rem .7rem;
  background: rgba(180, 135, 74, 0.12);
  border: 1px solid rgba(180, 135, 74, 0.28);
  border-radius: 100px;
  font-size: .8125rem;
  color: var(--brand-gold-lit);
  text-decoration: none;
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}

.post-tags a:hover,
.post-categories a:hover {
  background: rgba(180, 135, 74, 0.22);
  border-color: var(--line-strong);
  text-decoration: none;
}

/* ─── Post navigation ─── */
.post-navigation {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-navigation a {
  color: var(--text-secondary);
  font-size: .9375rem;
  display: flex;
  align-items: center;
  gap: .375rem;
  transition: color 180ms var(--ease);
}

.post-navigation a:hover { color: var(--brand-gold-lit); text-decoration: none; }

.post-navigation .nav-title {
  font-family: var(--biblical);
  font-size: 1.0625rem;
}

/* ─── Pagination ─── */
.pagination {
  display: flex;
  gap: .375rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.pagination a,
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  padding: 0 .75rem;
  border-radius: 100px;
  font-size: .9375rem;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text-secondary);
  transition: border-color 180ms var(--ease), color 180ms var(--ease), background 180ms var(--ease);
}

.pagination a:hover {
  border-color: var(--line-strong);
  color: var(--brand-cream);
  text-decoration: none;
}

.pagination .current {
  background: var(--brand-gold);
  color: #1a1406;
  font-weight: 700;
  border-color: transparent;
}

/* ─── Sidebar ─── */
.sidebar { min-width: 0; }

.widget {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
}

.widget-title {
  font-family: var(--ui);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-gold-lit);
  margin: 0 0 .875rem;
  padding-bottom: .625rem;
  border-bottom: 1px solid var(--line);
}

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

.widget ul li {
  padding: .4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .9375rem;
  color: var(--text-secondary);
}

.widget ul li:last-child { border-bottom: none; padding-bottom: 0; }
.widget ul li a { color: var(--text-secondary); transition: color 180ms var(--ease); }
.widget ul li a:hover { color: var(--brand-gold-lit); text-decoration: none; }

.widget p { color: var(--text-secondary); font-size: .9375rem; }
.widget p:last-child { margin-bottom: 0; }
.widget select {
  background: var(--bg-ink);
  color: var(--text-primary);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .4rem .75rem;
  width: 100%;
}

/* ─── Search form ─── */
.search-form {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.search-field {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .55rem 1.125rem;
  color: var(--text-primary);
  font-family: var(--ui);
  font-size: .9375rem;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

.search-field::placeholder { color: var(--text-muted); }

.search-field:focus {
  outline: 2px solid var(--brand-gold-lit);
  outline-offset: 0;
  background: rgba(255, 255, 255, 0.08);
}

.search-submit {
  background: var(--brand-gold);
  color: #1a1406;
  border: none;
  border-radius: 100px;
  padding: .55rem 1.375rem;
  font-family: var(--ui);
  font-weight: 700;
  font-size: .9375rem;
  cursor: pointer;
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.search-submit:hover {
  background: var(--brand-gold-lit);
  box-shadow: 0 0 1.5rem rgba(212, 160, 86, 0.30);
}

/* Screen reader only */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── 404 / no-results ─── */
.error-404,
.no-results {
  text-align: center;
  padding: 4rem 2rem;
}

.error-404 .search-form,
.no-results .search-form {
  max-width: 26rem;
  margin: 1.5rem auto;
}

.error-404 .error-code {
  font-family: var(--biblical);
  font-size: clamp(6rem, 16vw, 9rem);
  font-weight: 700;
  color: var(--brand-gold);
  line-height: 1;
  margin-bottom: .25rem;
  text-shadow: 0 0 60px rgba(180, 135, 74, 0.35);
}

.error-404 h1,
.no-results h1 {
  margin-bottom: 1rem;
}

/* ─── Comments ─── */
.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.comments-title {
  font-size: 1.375rem;
  margin: 0 0 1.5rem;
}

.comment-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.comment-list .children {
  list-style: none;
  padding-left: 1.5rem;
  margin: 0;
  border-left: 2px solid var(--line);
}

.comment {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.comment-list li:last-child > .comment { border-bottom: none; }

.comment-author b { color: var(--text-primary); font-weight: 700; }
.comment-author a { color: var(--text-primary); }
.comment-author img { border-radius: 50%; margin-right: .5rem; }

.comment-metadata {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: .25rem 0 .75rem;
}

.comment-metadata a { color: var(--text-muted); }
.comment-metadata a:hover { color: var(--brand-gold-lit); }

.comment-content p { color: var(--text-secondary); margin: 0 0 .5em; }
.comment-content p:last-child { margin-bottom: 0; }

.comment-reply-link {
  display: inline-block;
  margin-top: .5rem;
  font-size: .8125rem;
  color: var(--brand-gold-lit);
}

/* Comment form */
.comment-respond { margin-top: 2rem; }
.comment-reply-title { font-size: 1.25rem; margin: 0 0 1.25rem; }
.comment-notes { font-size: .875rem; color: var(--text-muted); margin-bottom: 1rem; }

.comment-form label {
  display: block;
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: .25rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .55rem .875rem;
  color: var(--text-primary);
  font-family: var(--ui);
  font-size: .9375rem;
  margin-bottom: 1rem;
  display: block;
}

.comment-form textarea { min-height: 140px; resize: vertical; }

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  outline: 2px solid var(--brand-gold-lit);
  outline-offset: 0;
}

.comment-form .submit,
.comment-form input[type="submit"] {
  background: var(--brand-gold);
  color: #1a1406;
  border: none;
  border-radius: 100px;
  padding: .65rem 1.75rem;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.comment-form .submit:hover,
.comment-form input[type="submit"]:hover {
  background: var(--brand-gold-lit);
  box-shadow: 0 0 1.5rem rgba(212, 160, 86, 0.30);
}

/* ─── Site footer ─── */
#site-footer {
  border-top: 1px solid var(--line-strong);
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(9, 9, 7, 0.6));
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav ul li a {
  display: block;
  padding: .3rem .75rem;
  font-size: .875rem;
  color: var(--text-muted);
  border-radius: 4px;
  text-decoration: none;
  transition: color 180ms var(--ease);
}

.footer-nav ul li a:hover { color: var(--brand-cream); }

.footer-copyright {
  margin: 0;
  font-size: .8125rem;
  color: var(--text-muted);
}

.footer-copyright a { color: var(--text-muted); }
.footer-copyright a:hover { color: var(--brand-gold-lit); text-decoration: none; }

/* ─── Gutenberg / block editor alignment ─── */
.alignleft  { float: left;  margin: .5em 1.5em 1em 0; }
.alignright { float: right; margin: .5em 0 1em 1.5em; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; display: block; }

.wp-block-image figcaption,
figcaption {
  text-align: center;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: .375rem;
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .post-card:hover { transform: none; }
}
