@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font: 19px/1.78 Lora, Georgia, Iowan Old Style, Charter, serif;
  color: #1a1a1a;
  background: #fdfcfa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  line-height: 1.2;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.125rem;
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  h2 {
    font-size: 1.75rem;
  }
}
p {
  margin: 0 0 1.5rem;
}

a {
  color: #1d3557;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
a:hover {
  color: #b85c00;
  border-bottom-color: currentColor;
}

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

figure {
  margin: 2rem 0;
  clear: both;
}
figure img {
  max-width: 100%;
  height: auto;
  display: block;
}
figure.align-left {
  float: left;
  width: 50%;
  margin: 0.75rem 2rem 1rem 0;
  clear: none;
}
figure.align-right {
  float: right;
  width: 50%;
  margin: 0.75rem 0 1rem 2rem;
  clear: none;
}
figure.align-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}
figure.align-center img {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  figure.align-left,
  figure.align-right {
    float: none;
    width: 100%;
    margin: 2rem 0;
  }
  figure.align-center {
    max-width: 100%;
  }
}

figcaption {
  font-size: 0.875rem;
  color: #5a5a5a;
  margin-top: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  text-align: center;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container--wide {
  max-width: 1280px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #f5f2ec;
  border-bottom: 1px solid #d4cfc4;
  padding: 1rem 0;
  transition: transform 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 1px 0 transparent;
}
.site-header:not(.is-hidden) {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  border: none;
}
.site-header__brand:hover {
  color: inherit;
  border: none;
}
.site-header__brand:hover .site-header__title {
  color: #b85c00;
}
.site-header__logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.site-header__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-header__title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 150ms ease;
}
@media (max-width: 640px) {
  .site-header__title {
    font-size: 1.25rem;
  }
}
.site-header__tagline {
  font-size: 0.8125rem;
  color: #5a5a5a;
  font-style: italic;
  margin-top: 2px;
}
@media (max-width: 640px) {
  .site-header__tagline {
    display: none;
  }
}
.site-header__menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .site-header__menu-toggle {
    display: flex;
  }
}
.site-header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  transition: transform 200ms ease, opacity 200ms ease;
}
.site-header__menu-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.site-header__menu-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.site-header__menu-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media (max-width: 768px) {
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f5f2ec;
    border-bottom: 1px solid #d4cfc4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease;
  }
  .site-header__nav.is-open {
    max-height: 80vh;
    overflow-y: auto;
  }
}

.site-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .site-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0;
  }
}
.site-nav > li {
  position: relative;
}
@media (max-width: 768px) {
  .site-nav > li {
    border-top: 1px solid #d4cfc4;
  }
  .site-nav > li:first-child {
    border-top: none;
  }
}
.site-nav > li > a,
.site-nav > li > button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color 150ms ease;
  border-radius: 3px;
}
.site-nav > li > a:hover,
.site-nav > li > button:hover {
  color: #b85c00;
  border: none;
}
@media (max-width: 768px) {
  .site-nav > li > a,
  .site-nav > li > button {
    padding: 0.75rem 1.5rem;
    width: 100%;
    justify-content: flex-start;
  }
}
.site-nav__has-children {
  position: relative;
}
.site-nav__caret {
  transition: transform 200ms ease;
  opacity: 0.6;
}
.site-nav__has-children.is-open .site-nav__caret {
  transform: rotate(180deg);
}
.site-nav__dropdown {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 240px;
  background: white;
  border: 1px solid #d4cfc4;
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  z-index: 50;
}
.site-nav__has-children.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav__dropdown li {
  margin: 0;
}
.site-nav__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #1a1a1a;
  text-decoration: none;
  border: none;
  border-radius: 3px;
}
.site-nav__dropdown a:hover {
  background: #f5f2ec;
  color: #b85c00;
  border: none;
}
@media (max-width: 768px) {
  .site-nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.02);
    min-width: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease;
  }
  .site-nav__has-children.is-open .site-nav__dropdown {
    max-height: 50vh;
  }
  .site-nav__dropdown a {
    padding-left: 2rem;
  }
}
.site-nav__count {
  font-size: 0.6875rem;
  color: #5a5a5a;
  font-variant-numeric: tabular-nums;
  background: #f5f2ec;
  padding: 1px 6px;
  border-radius: 10px;
}
.site-nav__dropdown-more {
  border-top: 1px solid #d4cfc4;
  margin-top: 0.25rem;
  padding-top: 0.25rem;
}
.site-nav__dropdown-more a {
  font-style: italic;
  color: #b85c00 !important;
}
.site-nav__dropdown-more a:hover {
  background: rgba(184, 92, 0, 0.06);
}
.site-nav__music {
  font-weight: 600;
}
.site-nav__external {
  opacity: 0.6;
  flex-shrink: 0;
}

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d4cfc4;
  background: white;
  color: #b85c00;
  cursor: pointer;
  z-index: 90;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0;
  opacity: 0;
  transform: translateY(8px) rotate(-12deg);
  transition: opacity 250ms ease, transform 250ms ease, background 150ms ease, color 150ms ease;
}
.back-to-top span {
  display: block;
  transform: rotate(180deg);
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.back-to-top:hover {
  background: #b85c00;
  color: white;
  transform: translateY(-2px) rotate(-6deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
@media (max-width: 640px) {
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.25rem;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.cat-card:hover .cat-card__image {
  transform: scale(1.05);
}
.cat-card__link {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  text-decoration: none;
  color: white;
  border: none;
  overflow: hidden;
}
.cat-card__link:hover {
  color: white;
  border: none;
}
.cat-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.8);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.cat-card__image--placeholder {
  background: linear-gradient(135deg, #2a3340 0%, #3d4a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card__placeholder-mark {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
}
.cat-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}
.cat-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.5rem;
}
.cat-card__title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.cat-card__count {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.site-footer {
  margin-top: 6rem;
  background: #000000;
  color: rgba(255, 255, 255, 0.85);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  border: none;
  text-decoration: none;
  transition: color 150ms ease;
}
.site-footer a:hover {
  color: #ffaa00;
  border: none;
}
.site-footer__columns {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .site-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
  }
}
@media (max-width: 640px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.site-footer__col {
  min-width: 0;
}
@media (max-width: 1024px) {
  .site-footer__col--about {
    grid-column: 1/-1;
    text-align: center;
  }
}
.site-footer__logo-wrap {
  margin-bottom: 1.5rem;
}
.site-footer__logo {
  max-width: 140px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .site-footer__logo {
    margin: 0 auto;
  }
}
.site-footer__tagline {
  font-style: italic;
  font-family: "Lora", "Georgia", "Iowan Old Style", "Charter", serif;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
  max-width: 24rem;
}
@media (max-width: 1024px) {
  .site-footer__tagline {
    margin: 0 auto 1rem;
  }
}
.site-footer__about-link a {
  font-weight: 600;
  color: #ffaa00;
}
.site-footer__heading {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__list li:last-child {
  border-bottom: none;
}
.site-footer__count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-variant-numeric: tabular-nums;
}
.site-footer__music {
  margin: 0 0 1rem;
}
.site-footer__music a {
  display: inline-block;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition: border-color 150ms ease, background 150ms ease;
}
.site-footer__music a:hover {
  border-color: #ffaa00;
  background: rgba(255, 170, 0, 0.08);
  color: rgba(255, 255, 255, 0.9);
}
.site-footer__music-label {
  display: block;
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.95);
}
.site-footer__music-sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.site-footer__social {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  gap: 0.75rem;
}
.site-footer__social li {
  margin: 0;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 150ms ease, color 150ms ease, transform 150ms ease;
}
.site-footer__social a:hover {
  border-color: #ffaa00;
  color: #ffaa00;
  transform: translateY(-2px);
}
.site-footer__social a svg {
  display: block;
}
.site-footer__bottom {
  background: #000000;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__bottom p {
  margin: 0.25rem 0;
}
.site-footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer__bottom a:hover {
  color: #ffaa00;
}

.post__body {
  font-size: 1.125rem;
  line-height: 1.78;
  margin-top: 3rem;
}
.post__body p {
  margin: 0 0 1.5rem;
}
.post__body img {
  display: block;
  max-width: 100%;
  margin: 2rem auto;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.post__body img[align=left],
.post__body img.alignleft,
.post__body .alignleft img,
.post__body .alignleft {
  float: left;
  margin: 0.5rem 1.5rem 1rem 0;
  max-width: 45%;
}
.post__body img[align=right],
.post__body img.alignright,
.post__body .alignright img,
.post__body .alignright {
  float: right;
  margin: 0.5rem 0 1rem 1.5rem;
  max-width: 45%;
}
.post__body img[align=center],
.post__body img.aligncenter,
.post__body .aligncenter img,
.post__body .aligncenter {
  display: block;
  margin: 2rem auto;
  float: none;
}
.post__body h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
}
.post__body h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
}
.post__body blockquote {
  margin: 2rem 0;
  padding: 1rem 2rem;
  border-left: 4px solid #b85c00;
  font-style: italic;
  color: #5a5a5a;
  font-size: 1.1875rem;
}
.post__body ul, .post__body ol {
  padding-left: 2rem;
  margin: 0 0 1.5rem;
}
.post__body ul li, .post__body ol li {
  margin-bottom: 0.5rem;
}
.post__body p::after {
  content: "";
  display: table;
  clear: both;
}
.post__gallery {
  margin-top: 4rem;
}
.post__gallery-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.post__gallery-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #b85c00;
  margin: 1rem auto 0;
}
.post__nav {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #d4cfc4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .post__nav {
    grid-template-columns: 1fr;
  }
}
.post__nav-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  border: 1px solid #d4cfc4;
  border-radius: 6px;
  padding: 1.5rem 2rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
  background: #fdfcfa;
}
.post__nav-link:hover {
  border-color: #b85c00;
  background: #f5f2ec;
  color: inherit;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.post__nav-link--next {
  text-align: right;
}
.post__nav-direction {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b85c00;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.post__nav-title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
}

.post-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0;
}
.post-hero__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px) saturate(0.7) brightness(0.85);
  transform: scale(1.04);
  z-index: 1;
}
.post-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 2;
}
.post-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}
@media (min-width: 768px) {
  .post-hero__content {
    padding: 4rem 3rem 3rem;
  }
}
.post-hero--text-only {
  background: #f5f2ec;
  min-height: 280px;
  border-bottom: 3px solid #b85c00;
}
.post-hero--text-only .post-hero__content {
  color: #1a1a1a;
  text-align: left;
}
.post-hero--text-only .post-hero__eyebrow,
.post-hero--text-only .post-hero__eyebrow a {
  color: #b85c00;
}
.post-hero--text-only .post-hero__title {
  color: #1a1a1a;
}
.post-hero--text-only .post-hero__subtitle {
  color: #5a5a5a;
}
.post-hero--text-only .post-hero__meta {
  color: #5a5a5a;
}
.post-hero--has-image .post-hero__content {
  color: rgba(255, 255, 255, 0.97);
}
.post-hero--has-image .post-hero__eyebrow,
.post-hero--has-image .post-hero__eyebrow a {
  color: rgba(255, 255, 255, 0.88);
}
.post-hero--has-image .post-hero__eyebrow:hover,
.post-hero--has-image .post-hero__eyebrow a:hover {
  color: white;
  border-bottom-color: white;
}
.post-hero--has-image .post-hero__title {
  color: white;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.post-hero--has-image .post-hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.post-hero--has-image .post-hero__meta {
  color: rgba(255, 255, 255, 0.75);
}
.post-hero--has-image .post-hero__meta a {
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.post-hero--has-image .post-hero__meta a:hover {
  color: white;
  border-bottom-color: white;
}
.post-hero__eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 1rem;
}
.post-hero__eyebrow a {
  text-decoration: none;
  border: none;
}
.post-hero__eyebrow-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}
.post-hero__title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  letter-spacing: -0.015em;
}
@media (max-width: 768px) {
  .post-hero__title {
    font-size: 2rem;
  }
}
.post-hero__subtitle {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  max-width: 42rem;
}
.post-hero__meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
.post-hero__meta > * + * {
  margin-left: 0.5rem;
}
.post-hero__meta > * + *::before {
  content: "·";
  margin-right: 0.5rem;
  opacity: 0.6;
}

.gallery-grid {
  column-count: 3;
  column-gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .gallery-grid {
    column-count: 2;
  }
}
@media (max-width: 640px) {
  .gallery-grid {
    column-count: 1;
  }
}
.gallery-grid__item {
  margin: 0 0 1rem;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
}
.gallery-grid__item img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  transition: transform 250ms ease, box-shadow 250ms ease;
  cursor: zoom-in;
}
.gallery-grid__item a:hover img {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  animation: lightboxFadeIn 200ms ease;
}
.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 3px;
  max-width: 80%;
  text-align: center;
}
.lightbox__btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 1.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}
.lightbox__btn:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lightbox__btn--close {
  top: 1.5rem;
  right: 1.5rem;
}
.lightbox__btn--prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__btn--next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__counter {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
}

@keyframes lightboxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.error-page {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}

.home-featured {
  margin-bottom: 3rem;
}
.home-featured__link {
  position: relative;
  display: block;
  height: 480px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  border: none;
}
@media (max-width: 768px) {
  .home-featured__link {
    height: 360px;
  }
}
.home-featured__link:hover {
  color: white;
}
.home-featured__link:hover .home-featured__image {
  transform: scale(1.03);
}
.home-featured__link:hover .home-featured__title {
  color: white;
}
.home-featured__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.85);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.home-featured__image--placeholder {
  background: linear-gradient(135deg, #2a3340 0%, #3d4a5c 100%);
}
.home-featured__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}
.home-featured__content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .home-featured__content {
    padding: 4rem 3rem;
  }
}
.home-featured__eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}
.home-featured__eyebrow-sep {
  margin: 0 0.5rem;
  opacity: 0.6;
}
.home-featured__title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  letter-spacing: -0.015em;
  color: white;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
  transition: color 200ms ease;
  max-width: 36rem;
}
@media (max-width: 768px) {
  .home-featured__title {
    font-size: 2rem;
  }
}
.home-featured__subtitle {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  margin: 0 0 1rem;
  max-width: 38rem;
}
.home-featured__meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 1024px) {
  .home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .home-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.post-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.post-card:hover .post-card__image {
  transform: scale(1.05);
}
.post-card:hover .post-card__title {
  color: white;
}
.post-card__link {
  position: relative;
  display: block;
  aspect-ratio: 3/2;
  text-decoration: none;
  color: white;
  border: none;
  overflow: hidden;
}
.post-card__link:hover {
  color: white;
}
.post-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(0.85);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.post-card__image--placeholder {
  background: linear-gradient(135deg, #2a3340 0%, #3d4a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card__placeholder-mark {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  line-height: 1;
}
.post-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 2;
}
.post-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1.5rem;
  color: white;
}
.post-card__eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
}
.post-card__title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition: color 200ms ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__meta {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}
.post-card--text-only .post-card__placeholder-mark {
  opacity: 0.4;
}

.home-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 3rem 1.5rem;
  color: #5a5a5a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
}
.home-loader.is-done {
  opacity: 0.5;
}
.home-loader.is-done .home-loader__spinner {
  display: none;
}
.home-loader__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #d4cfc4;
  border-top-color: #b85c00;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.post-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 2rem;
  }
}
.post-layout__main {
  min-width: 0;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.post-layout__sidebar {
  padding-top: 3rem;
}
@media (min-width: 1024px) {
  .post-layout__sidebar {
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
}
@media (max-width: 768px) {
  .post-layout__sidebar {
    padding-top: 2rem;
  }
  .post-layout__sidebar .sidebar__section {
    display: none;
  }
}

.sidebar {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.sidebar__bio {
  text-align: center;
  padding: 1.5rem;
  background: #f5f2ec;
  border-radius: 6px;
  border: 1px solid #d4cfc4;
}
.sidebar__photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: #fdfcfa;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  border: 3px solid #fdfcfa;
  outline: 1px solid #d4cfc4;
}
.sidebar__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sidebar__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1d3557 0%, #b85c00 100%);
}
.sidebar__photo--placeholder span {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.sidebar__name {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.sidebar__bio-text {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #5a5a5a;
  margin: 0 0 1rem;
  font-family: "Lora", "Georgia", "Iowan Old Style", "Charter", serif;
}
.sidebar__bio-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b85c00;
  border: none;
}
.sidebar__bio-link:hover {
  color: #b85c00;
  border: none;
}
.sidebar__section {
  margin-top: 2rem;
}
.sidebar__heading {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #5a5a5a;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #d4cfc4;
}
.sidebar__post-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-post {
  margin-bottom: 1rem;
}
.sidebar-post:last-child {
  margin-bottom: 0;
}
.sidebar-post__link {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  border: none;
  align-items: start;
}
.sidebar-post__link:hover {
  color: inherit;
  border: none;
}
.sidebar-post__link:hover .sidebar-post__thumb {
  transform: scale(1.03);
}
.sidebar-post__link:hover .sidebar-post__title {
  color: #b85c00;
}
.sidebar-post__thumb {
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
  transition: transform 250ms ease;
  overflow: hidden;
}
.sidebar-post__thumb--placeholder {
  background: linear-gradient(135deg, #2a3340 0%, #3d4a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-post__thumb--placeholder span {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}
.sidebar-post__body {
  min-width: 0;
}
.sidebar-post__category {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #b85c00;
  margin-bottom: 0.25rem;
}
.sidebar-post__title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.25rem;
  color: #1a1a1a;
  transition: color 150ms ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-post__date {
  font-size: 0.75rem;
  color: #5a5a5a;
}

.listing-hero {
  background: #f5f2ec;
  border-bottom: 3px solid #b85c00;
  padding: 3rem 0;
  margin-bottom: 2rem;
}
.listing-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.listing-hero__breadcrumb {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: #5a5a5a;
  margin-bottom: 0.5rem;
}
.listing-hero__breadcrumb a {
  color: #b85c00;
  border: none;
}
.listing-hero__breadcrumb a:hover {
  color: #b85c00;
  border: none;
}
.listing-hero__breadcrumb-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}
.listing-hero__eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #b85c00;
  margin-bottom: 0.75rem;
}
.listing-hero__title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .listing-hero__title {
    font-size: 2.25rem;
  }
}
.listing-hero__desc {
  font-family: "Lora", "Georgia", "Iowan Old Style", "Charter", serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #5a5a5a;
  max-width: 42rem;
  margin: 0 0 1rem;
}
.listing-hero__count {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: #5a5a5a;
  font-weight: 500;
}
.listing-hero--archive, .listing-hero--categories-index {
  background: #191919;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 4rem 0;
}
.listing-hero--archive .listing-hero__eyebrow, .listing-hero--categories-index .listing-hero__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.listing-hero--archive .listing-hero__title, .listing-hero--categories-index .listing-hero__title {
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.listing-hero--archive .listing-hero__desc, .listing-hero--categories-index .listing-hero__desc {
  color: rgba(255, 255, 255, 0.78);
}
.listing-hero--archive .listing-hero__count, .listing-hero--categories-index .listing-hero__count {
  color: rgba(255, 255, 255, 0.65);
}
.listing-hero--archive .listing-hero__breadcrumb, .listing-hero--categories-index .listing-hero__breadcrumb {
  color: rgba(255, 255, 255, 0.55);
}
.listing-hero--archive .listing-hero__breadcrumb a, .listing-hero--categories-index .listing-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.listing-hero--archive .listing-hero__breadcrumb a:hover, .listing-hero--categories-index .listing-hero__breadcrumb a:hover {
  color: #ffaa00;
}
.listing-hero--archive {
  background: linear-gradient(135deg, #191919 0%, #ad6672 100%);
}
.listing-hero--categories-index {
  background: linear-gradient(135deg, #191919 0%, #887d9a 100%);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid #d4cfc4;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.pagination__link {
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  border: 1px solid #d4cfc4;
  background: #fdfcfa;
  color: #1a1a1a;
  text-decoration: none;
  transition: border-color 150ms ease, background 150ms ease;
}
.pagination__link:hover {
  border-color: #b85c00;
  background: #f5f2ec;
  color: #b85c00;
}
.pagination__link--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination__link--disabled:hover {
  border-color: #d4cfc4;
  background: #fdfcfa;
  color: #1a1a1a;
}
.pagination__status {
  font-size: 0.875rem;
  color: #5a5a5a;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .pagination {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
  .pagination__status {
    order: -1;
    flex-basis: 100%;
    text-align: center;
  }
}

.listing-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #5a5a5a;
}
.listing-empty p {
  margin: 0 0 0.5rem;
}

.bio-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 3rem;
  background: radial-gradient(ellipse at 90% 10%, rgba(255, 170, 0, 0.85) 0%, rgba(184, 92, 0, 0.6) 30%, rgb(20, 14, 8) 80%), #0a0807;
}
@media (max-width: 768px) {
  .bio-hero {
    min-height: 260px;
  }
}
.bio-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
  color: rgba(255, 255, 255, 0.97);
}
@media (min-width: 768px) {
  .bio-hero__content {
    padding: 4rem 3rem;
  }
}
.bio-hero__eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgba(255, 200, 120, 0.95);
}
.bio-hero__name {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: white;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .bio-hero__name {
    font-size: 2.5rem;
  }
}
.bio-hero__short {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1.4;
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .bio-hero__short {
    font-size: 1.125rem;
  }
}

.bio-body {
  font-size: 1.125rem;
  line-height: 1.78;
}
.bio-body p {
  margin: 0 0 1.5rem;
}
.bio-body p:first-of-type::first-letter {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.9;
  float: left;
  margin: 0.2rem 0.75rem 0 0;
  color: #b85c00;
}

.gallery-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .gallery-hero {
    min-height: 280px;
  }
}
.gallery-hero__backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.8) brightness(0.85) blur(2px);
  transform: scale(1.05);
  z-index: 1;
}
.gallery-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.15) 80%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 2;
}
.gallery-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .gallery-hero__content {
    padding: 3rem 2rem;
  }
}
.gallery-hero--text-only {
  background: linear-gradient(135deg, #191919 0%, #2d4a6d 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gallery-hero--text-only .gallery-hero__content {
  color: rgba(255, 255, 255, 0.97);
}
.gallery-hero--has-image .gallery-hero__content {
  color: rgba(255, 255, 255, 0.97);
}
.gallery-hero__eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
}
.gallery-hero__title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  color: white;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .gallery-hero__title {
    font-size: 2rem;
  }
}
.gallery-hero__desc {
  font-family: "Lora", "Georgia", "Iowan Old Style", "Charter", serif;
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}
.gallery-hero__count {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.gallery-mosaic {
  column-count: 3;
  column-gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .gallery-mosaic {
    column-count: 2;
  }
}
@media (max-width: 640px) {
  .gallery-mosaic {
    column-count: 1;
  }
}
.gallery-mosaic__item {
  break-inside: avoid;
  margin: 0 0 1rem;
  display: block;
}
.gallery-mosaic__link {
  display: block;
  border: none;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.gallery-mosaic__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: none;
}
.gallery-mosaic__link img {
  display: block;
  width: 100%;
  height: auto;
}
.gallery-mosaic__caption {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  color: #5a5a5a;
  font-style: italic;
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

.gallery-related {
  margin: 3rem 0;
  padding: 1.5rem 2rem;
  background: #f5f2ec;
  border-left: 4px solid #b85c00;
  border-radius: 0 6px 6px 0;
}
.gallery-related__label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #b85c00;
  margin-bottom: 0.5rem;
}
.gallery-related__link {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  border: none;
  line-height: 1.3;
}
.gallery-related__link:hover {
  color: #b85c00;
  border: none;
}

.post__gallery-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.post__gallery-header .post__gallery-title {
  margin: 0;
}

.post__gallery-link {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b85c00;
  text-decoration: none;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: color 150ms ease;
}
.post__gallery-link:hover {
  color: #b85c00;
  border: none;
}

.listing-hero--galleries-index {
  background: linear-gradient(135deg, #191919 0%, #3a5a4f 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 4rem 0;
}
.listing-hero--galleries-index .listing-hero__eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.listing-hero--galleries-index .listing-hero__title {
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.listing-hero--galleries-index .listing-hero__desc {
  color: rgba(255, 255, 255, 0.78);
}
.listing-hero--galleries-index .listing-hero__count {
  color: rgba(255, 255, 255, 0.65);
}

.galleries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .galleries-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.gallery-card:hover .gallery-card__image {
  transform: scale(1.05);
}
.gallery-card__link {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  text-decoration: none;
  color: white;
  border: none;
  overflow: hidden;
}
.gallery-card__link:hover {
  color: white;
  border: none;
}
.gallery-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.gallery-card__image--placeholder {
  background: linear-gradient(135deg, #2a3340 0%, #3d4a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-card__placeholder-mark {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
}
.gallery-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 2;
}
.gallery-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 1rem;
}
.gallery-card__title {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
.gallery-card__count {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/*# sourceMappingURL=theme.css.map */


/* ============================================================
   Tagged: line at bottom of post body
   ============================================================ */
.post__tags {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e3e6eb;
    font-size: 0.875rem;
    color: #5a5a5a;
}
.post__tags-label {
    color: #888;
    margin-right: 0.4rem;
    font-style: italic;
}
.post__tag {
    color: #b85c00;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: border-color 120ms;
}
.post__tag:hover {
    border-bottom-color: #b85c00;
}


/* ============================================================
   Tag cloud (tags index page)
   ============================================================ */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    padding: 2rem 1rem;
    line-height: 1.5;
}
.tag-cloud__item {
    color: #b85c00;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: border-color 120ms;
    white-space: nowrap;
}
.tag-cloud__item:hover {
    border-bottom-color: #b85c00;
}
.tag-cloud__count {
    color: #999;
    font-size: 0.7em;
    margin-left: 0.2em;
    font-variant-numeric: tabular-nums;
}

/* Hero band variant for tags-index */
.listing-hero--tags-index {
    background: linear-gradient(135deg, #b85c00, #8c4400);
    color: white;
}
.listing-hero--tags-index .listing-hero__title,
.listing-hero--tags-index .listing-hero__desc,
.listing-hero--tags-index .listing-hero__eyebrow,
.listing-hero--tags-index .listing-hero__count {
    color: white;
}
