:root {
  --ground: #EFEDE4;
  --surface: #FFFFFF;
  --ink: #33363B;
  --ink-soft: #5E6166;
  --accent: #A8734A;
  --accent-deep: #8C5C38;
  --gold: #BDB07D;
  --line: #DED9CC;
  --warm-white: #EFEAE0;
  --serif: ui-serif, "New York", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --maxw: 1180px;
  --z-sticky: 40;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--ground); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; display: flex; flex-direction: column; min-height: 100vh; }
.masthead { flex: none; } #app { flex: 1 0 auto; } .site-footer { flex: none; }
img { max-width: 100%; display: block; }
a { color: var(--accent-deep); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
h1, h2, h3 { text-wrap: balance; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; width: 100%; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 700; color: var(--accent-deep); }
.loading { color: var(--ink-soft); font-size: 14px; padding: 8px 0; }

/* Masthead */
.masthead { position: sticky; top: 0; z-index: var(--z-sticky); background: var(--surface); border-bottom: 1px solid var(--line); }
.masthead .wrap { display: flex; align-items: center; gap: 26px; height: 70px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 32px; width: auto; }
.topnav { display: flex; gap: 4px; flex: 1; }
.topnav a { font-size: 14px; font-weight: 600; color: var(--ink); padding: 8px 12px; border-radius: 7px; white-space: nowrap; }
.topnav a:hover { background: var(--ground); }
.topnav a.active { color: var(--accent-deep); }
.m-search { display: flex; align-items: center; gap: 8px; background: var(--ground); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; min-width: 210px; transition: border-color .15s, box-shadow .15s; }
.m-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(168,115,74,.13); }
.m-search svg { width: 16px; height: 16px; flex: none; color: var(--ink-soft); }
.m-search input { border: 0; background: none; outline: none; width: 100%; font-family: var(--sans); font-size: 14px; color: var(--ink); }

/* Hero / tag band */
.band { background: var(--ink); color: var(--warm-white); position: relative; overflow: hidden; background-size: cover; background-position: center; }
.band .wrap { padding: 56px 24px 60px; position: relative; z-index: 2; }
.band h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 5.4vw, 58px); line-height: 1.03; margin: 0 0 22px; letter-spacing: -.015em; }
.band p { margin: 14px 0 0; max-width: 50ch; color: #C6C0B2; font-size: 17px; line-height: 1.6; }
.band .eyebrow { color: var(--gold); }
.band .count { margin-top: 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--gold); }
.band .mark { position: absolute; right: -50px; top: 50%; transform: translateY(-50%); width: 300px; opacity: .09; filter: brightness(0) invert(1); pointer-events: none; }
.tag-band .wrap { padding: 52px 24px 54px; }
.tag-band h1 { margin-bottom: 0; }

.hero-search { display: flex; align-items: center; gap: 10px; background: var(--surface); border-radius: 12px; padding: 14px 18px; max-width: 520px; box-shadow: 0 18px 40px -22px rgba(0,0,0,.6); }
.hero-search svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.hero-search input { border: 0; outline: none; width: 100%; font-size: 16px; font-family: var(--sans); color: var(--ink); background: none; }

/* Section heads */
main.wrap { padding-bottom: 84px; }
section.block { padding-top: 48px; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.sec-head h2 { font-family: var(--serif); font-weight: 500; font-size: 28px; margin: 0; letter-spacing: -.01em; }
.sec-head a { font-size: 14px; font-weight: 600; color: var(--accent-deep); white-space: nowrap; }
.sec-head a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Browse tiles */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.tile { display: flex; flex-direction: column; gap: 10px; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 20px; transition: transform .18s, box-shadow .18s, border-color .18s; position: relative; }
.tile:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -18px rgba(51,54,59,.45); border-color: #D2C6B2; }
.tile.active { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(168,115,74,.18); }
.tile.active::after { content: ""; position: absolute; bottom: -10px; left: 50%; width: 16px; height: 16px; background: var(--surface); border-right: 1px solid var(--accent); border-bottom: 1px solid var(--accent); transform: translateX(-50%) rotate(45deg); z-index: 1; }
.tile .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--warm-white); color: var(--accent); display: grid; place-items: center; }
.tile .ico svg { width: 22px; height: 22px; }
.tile h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; margin: 0; }
.tile p { margin: 0; font-size: 13px; color: var(--ink-soft); }
.tile .n { font-weight: 700; color: var(--ink); }

/* Inline expanding browse box */
#browse-expand:empty { display: none; }
.expando { background: var(--surface); border: 1px solid var(--accent); border-radius: 14px; padding: 6px 24px 26px; margin-top: 18px; position: relative; box-shadow: 0 18px 40px -26px rgba(51,54,59,.5); animation: expandIn .28s cubic-bezier(.22,1,.36,1) both; }
@keyframes expandIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.ex-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 0 4px; gap: 12px; }
.ex-head h3 { font-family: var(--serif); font-weight: 500; font-size: 23px; margin: 0; }
.x-close { border: 1px solid var(--line); background: var(--ground); color: var(--ink); width: 34px; height: 34px; border-radius: 50%; font-size: 18px; line-height: 1; display: grid; place-items: center; flex: none; }
.x-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.ex-body { padding-top: 6px; }

/* Grid + cards */
.grid { display: grid; gap: 26px 22px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-align: left; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s, border-color .18s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -16px rgba(51,54,59,.4); border-color: #D2C6B2; }
.thumb { aspect-ratio: 16/9; position: relative; display: grid; place-items: center; color: #fff; background: linear-gradient(150deg, #33363B, #5A4A3A); overflow: hidden; }
.thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.thumb .play { position: relative; z-index: 1; width: 52px; height: 52px; border-radius: 50%; background: rgba(0,0,0,.35); border: 1.5px solid rgba(255,255,255,.85); display: grid; place-items: center; transition: transform .18s, background .18s; }
.card:hover .play { transform: scale(1.08); background: var(--accent); border-color: var(--accent); }
.thumb .play::after { content: ""; border-left: 15px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }
.card-body { padding: 15px 16px 17px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card .series { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-deep); }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.2; margin: 0; color: var(--ink); }
.card .meta { margin-top: auto; font-size: 13px; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.card .meta .spk { font-weight: 600; color: var(--ink); }
.card .meta .dot { color: var(--line); }
@keyframes cardIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.grid .card { animation: cardIn .45s cubic-bezier(.22,1,.36,1) both; }
.grid .card:nth-child(2){animation-delay:.04s}.grid .card:nth-child(3){animation-delay:.08s}.grid .card:nth-child(4){animation-delay:.12s}.grid .card:nth-child(5){animation-delay:.16s}.grid .card:nth-child(6){animation-delay:.2s}.grid .card:nth-child(7){animation-delay:.24s}.grid .card:nth-child(8){animation-delay:.28s}

/* Series wall */
.series-wall { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); }
.scard { text-align: left; display: block; }
.scard .art { aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; position: relative; display: flex; align-items: flex-end; padding: 20px; transition: transform .18s, box-shadow .18s; background-size: cover; background-position: center; }
.scard:hover .art { transform: translateY(-3px); box-shadow: 0 16px 32px -18px rgba(51,54,59,.5); }
.scard .art h3 { font-family: var(--serif); font-weight: 500; color: #fff; font-size: 22px; line-height: 1.1; margin: 0; max-width: 80%; text-shadow: 0 2px 14px rgba(0,0,0,.5); position: relative; z-index: 1; }
.scard .art .badge { position: absolute; top: 14px; left: 14px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #fff; background: rgba(0,0,0,.32); padding: 4px 9px; border-radius: 6px; z-index: 1; }
.scard .art .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.5), rgba(0,0,0,0) 60%); }
.scard .smeta { margin-top: 11px; font-size: 13px; color: var(--ink-soft); }
.scard .smeta b { color: var(--ink); font-weight: 700; }

/* Book grid */
.testament { margin-top: 28px; }
.testament > h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 0 0 4px; }
.testament > p { margin: 0 0 18px; font-size: 13px; color: var(--ink-soft); }
/* Flowing pills (not a rigid grid) so chips can't misalign or overflow rows.
   Books stay in scripture order; each chip is the same height and sizes to its
   own name. Matches the Topics cloud. */
.book-grid { display: flex; flex-wrap: wrap; align-content: flex-start; align-items: center; gap: 6px 8px; }
.book { display: inline-flex; align-items: center; gap: 8px; height: 33px; box-sizing: border-box; padding: 0 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 13.5px; font-weight: 600; line-height: 1; white-space: nowrap; background: var(--surface); color: var(--ink); font-family: var(--sans); appearance: none; -webkit-appearance: none; transition: border-color .15s, transform .15s, color .15s; }
.book .bk-name { white-space: nowrap; }
.book.has:hover { border-color: var(--accent); transform: translateY(-2px); color: var(--accent-deep); }
.book.empty { background: transparent; border-color: transparent; color: #A7A293; font-weight: 500; cursor: default; }
.book .cnt { flex: none; font-size: 10.5px; font-weight: 700; color: #fff; background: var(--accent); border-radius: 999px; padding: 1px 7px; min-width: 20px; text-align: center; }
.book.empty .cnt { display: none; }

/* Speakers */
.spk-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.spk-card { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 16px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.spk-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -18px rgba(51,54,59,.4); border-color: #D2C6B2; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(140deg, var(--accent), var(--accent-deep)); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 20px; font-weight: 600; flex: none; }
.spk-card .nm { font-weight: 700; color: var(--ink); }
.spk-card .ct { font-size: 13px; color: var(--ink-soft); }

/* Topics */
.cloud { display: flex; flex-wrap: wrap; gap: 11px; }
.topic { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink); transition: border-color .15s, color .15s, transform .15s; }
.topic:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.topic .cnt { font-size: 11px; font-weight: 700; color: var(--ink-soft); }

/* All Sermons filters */
.page-head { padding: 38px 0 14px; }
.page-head h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4vw, 42px); margin: 0; letter-spacing: -.01em; }
.sermons-top { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 16px; }
.v-search { display: flex; align-items: center; gap: 9px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 10px 14px; flex: 1; min-width: 220px; }
.v-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(168,115,74,.12); }
.v-search svg { width: 17px; height: 17px; color: var(--ink-soft); flex: none; }
.v-search input { border: 0; outline: none; background: none; width: 100%; font-size: 15px; font-family: var(--sans); color: var(--ink); }
.filter-toggle { display: inline-flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 10px 15px; font-size: 14px; font-weight: 600; color: var(--ink); }
.filter-toggle:hover { border-color: var(--accent); }
.filter-toggle svg { width: 16px; height: 16px; }
.filter-toggle .badge { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 1px 7px; }
.filter-toggle .badge[hidden] { display: none; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 6px 20px 18px; margin-bottom: 16px; display: none; }
.panel.open { display: block; }
.facet-group { padding: 14px 0; border-bottom: 1px solid var(--line); }
.facet-group:last-child { border-bottom: 0; }
.facet-group .ttl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); margin: 0 0 11px; }
.opt-row { display: flex; flex-wrap: wrap; gap: 8px; }
.opt { border: 1px solid var(--line); background: var(--ground); border-radius: 999px; padding: 6px 13px; font-size: 13px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.opt:hover { border-color: var(--accent); }
.opt.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.opt .c { font-size: 11px; opacity: .7; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; align-items: center; }
.chips:empty { display: none; }
.chip { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--accent); color: var(--accent-deep); border-radius: 999px; padding: 5px 8px 5px 12px; font-size: 13px; font-weight: 600; }
.chip .kind { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; opacity: .7; }
.chip .x { border: 0; background: var(--warm-white); color: var(--accent-deep); width: 19px; height: 19px; border-radius: 50%; line-height: 1; font-size: 14px; display: grid; place-items: center; padding: 0; }
.chip .x:hover { background: var(--accent); color: #fff; }
.chip-clear { border: 0; background: none; color: var(--accent-deep); font-size: 13px; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; padding: 6px 4px; }
.result-count { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.empty { text-align: center; padding: 64px 20px; color: var(--ink-soft); }
.empty img { width: 52px; margin: 0 auto 16px; opacity: .45; }
.empty h3 { font-family: var(--serif); color: var(--ink); font-weight: 500; font-size: 22px; margin: 0 0 6px; }

/* Sermon (post) page */
.detail-wrap { max-width: 880px; margin: 0 auto; padding: 28px 24px 84px; }
.back { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); font-size: 14px; font-weight: 600; padding: 6px 0; margin-bottom: 18px; }
.back:hover { color: var(--accent-deep); }
.back::before { content: ""; width: 7px; height: 7px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
.detail .series { color: var(--accent-deep); }
.detail h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 4.5vw, 44px); line-height: 1.08; letter-spacing: -.01em; margin: 10px 0 14px; color: var(--ink); }
.detail .topline { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); margin-bottom: 26px; }

/* Post content (pipeline-generated: video, audio, body) */
.post-content { font-size: 17px; line-height: 1.7; color: #34373B; }
.post-content p { margin: 0 0 18px; text-wrap: pretty; }
.post-content h2, .post-content h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); margin: 30px 0 12px; }
.post-content a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.post-content img { border-radius: 10px; margin: 8px 0 18px; }
/* Koenig editor wide / full-width images (required by Ghost). On narrow
   viewports they stay within the column; on wide screens they break out. */
.kg-width-wide, .kg-width-full { width: 100%; }
.kg-width-wide img, .kg-width-full img { width: 100%; height: auto; display: block; }
@media (min-width: 1000px) {
  .post-content .kg-width-wide { width: 116%; margin-left: -8%; }
  .post-content .kg-width-full { width: 100vw; margin-left: calc(50% - 50vw); }
  .post-content .kg-width-full img { border-radius: 0; }
}
.post-content blockquote { margin: 26px 0; padding: 0; color: var(--ink); font-family: var(--serif); font-style: italic; font-size: 21px; line-height: 1.5; }
/* Ghost converts our video/audio iframes into kg-embed-cards (stripping the
   wrapper class), so size each embed by its src: YouTube = 16:9, Transistor
   audio = a short fixed height. Without this, the audio player was stretched to
   16:9 and left a big empty gap before the description. */
.post-content .kg-embed-card { margin: 0 0 20px; }
.post-content .kg-embed-card iframe { width: 100%; border: 0; display: block; }
.post-content .kg-embed-card iframe[src*="youtube"],
.post-content .kg-embed-card iframe[src*="youtu.be"] { aspect-ratio: 16 / 9; height: auto; border-radius: 12px; }
.post-content .kg-embed-card iframe[src*="transistor.fm"] { aspect-ratio: auto; height: 180px; }
.post-content audio { width: 100%; margin: 0 0 26px; }

.tagsec { margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.tagsec .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-soft); margin: 0 0 12px; }
.taglinks { display: flex; flex-wrap: wrap; gap: 9px; }
.taglink { border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 600; }
.taglink:hover { border-color: var(--accent); color: var(--accent-deep); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 40px 0 0; font-size: 14px; }
.pagination a { font-weight: 600; }
.pagination .page-number { color: var(--ink-soft); }

/* Latest-sermon hero (home, above the browse tiles) */
.latest-hero { padding-top: 40px; }
.latest-hero-inner { display: grid; grid-template-columns: 1.4fr 1fr; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: transform .18s, box-shadow .18s, border-color .18s; }
.latest-hero-inner:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -24px rgba(51,54,59,.45); border-color: #D2C6B2; }
.lh-media { position: relative; aspect-ratio: 16 / 9; background: linear-gradient(150deg, #33363B, #5A4A3A); display: grid; place-items: center; }
.lh-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lh-media .play { position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 50%; background: rgba(0,0,0,.35); border: 2px solid rgba(255,255,255,.85); display: grid; place-items: center; }
.lh-media .play::after { content: ""; border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 5px; }
.lh-body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.lh-body h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 3vw, 32px); line-height: 1.12; letter-spacing: -.01em; margin: 8px 0 10px; color: var(--ink); }
.lh-meta { font-size: 14px; color: var(--ink-soft); }
.lh-cta { margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--accent-deep); }
.latest-hero-inner:hover .lh-cta { text-decoration: underline; text-underline-offset: 3px; }

/* Newsletter signup */
.signup-band { background: var(--ink); border-radius: 14px; padding: 30px 32px; margin-top: 52px; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.signup-band .su-copy h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 0 0 6px; color: #fff; }
.signup-band .su-copy p { margin: 0; color: #C6C0B2; font-size: 15px; }
.signup-form { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; min-width: 280px; max-width: 460px; }
.signup-form input { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; border-radius: 9px; padding: 12px 14px; font-size: 15px; font-family: var(--sans); }
.signup-form input::placeholder { color: #9C968B; }
.signup-form input:focus { outline: none; border-color: var(--gold); }
.signup-form button { border: 0; background: var(--accent); color: #fff; font-weight: 700; font-size: 15px; padding: 12px 20px; border-radius: 9px; white-space: nowrap; cursor: pointer; }
.signup-form button:hover { background: var(--accent-deep); }
.signup-note { flex-basis: 100%; margin: 6px 0 0; font-size: 12.5px; color: #9C968B; }
.signup-form.success ~ .signup-note, .signup-form.error ~ .signup-note { color: var(--gold); }

/* Post-page signup (light) */
.post-signup { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.post-signup h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 0 0 6px; color: var(--ink); }
.post-signup p { margin: 0 0 14px; color: var(--ink-soft); font-size: 15px; }
.post-signup .signup-form { max-width: 440px; }
.post-signup .signup-form input { border-color: var(--line); background: var(--surface); color: var(--ink); }
.post-signup .signup-form input::placeholder { color: var(--ink-soft); }
.post-signup .signup-note { color: var(--ink-soft); }

@media (max-width: 720px) {
  .latest-hero-inner { grid-template-columns: 1fr; }
  .lh-body { padding: 20px 22px; }
}

/* Footer */
.site-footer { background: var(--ink); color: #B0AA9C; padding: 48px 0; }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer img { height: 44px; filter: brightness(0) invert(1); opacity: .85; }
.site-footer nav { display: flex; gap: 24px; flex-wrap: wrap; }
.site-footer a { color: #C8C2B4; font-size: 14px; }
.site-footer a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 760px) {
  .masthead .wrap { flex-wrap: wrap; height: auto; padding-top: 11px; padding-bottom: 11px; gap: 10px 14px; }
  .brand { order: 1; } .brand img { height: 27px; }
  .m-search { order: 2; flex: 1; min-width: 0; }
  .topnav { order: 3; width: 100%; overflow-x: auto; gap: 2px; padding-bottom: 2px; -webkit-overflow-scrolling: touch; }
  .topnav::-webkit-scrollbar { height: 0; }
  .band .wrap { padding: 40px 24px 44px; }
  .expando { padding: 6px 16px 22px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; scroll-behavior: auto; } }
