:root {
  --bg: #f5f2ec;
  --text: #222;
  --muted: #666;
  --border: #d6d0c4;
  --accent: #4f6477;
  --max-width: 760px;
  --meta-font: "Trebuchet MS", "Avenir Next", Avenir, "Gill Sans", "Helvetica Neue", Arial, sans-serif;
  --serif-font: Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif-font);
  line-height: 1.7;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  border-top: 5px solid #1b1b1b;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding: 1.2rem 0 1rem;
}

.logo {
  color: var(--accent);
  text-decoration: none;
  font-family: Georgia, Cambria, serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  display: inline-block;
}

.logo:hover,
.entry-title a:hover {
  text-decoration: underline;
}

.tagline {
  margin: 0;
  color: var(--muted);
  font-family: var(--meta-font);
  font-size: 0.82rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--meta-font);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.site-nav a {
  color: var(--accent);
  text-decoration: none;
  opacity: 0.8;
  position: relative;
  padding-bottom: 0.15rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.08rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.65);
  transform-origin: center;
  opacity: 0.35;
}

.site-nav a:hover {
  text-decoration: none;
  opacity: 1;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  opacity: 0.8;
}

.main-content {
  padding-bottom: 3rem;
}

.intro h1,
.page-header h1,
.review-header h1 {
  color: #2f4354;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin: 0 0 0.75rem;
}

.lede {
  font-size: 1.2rem;
  margin-top: 0;
}

.entry-listing h2,
.prose h2,
.review-page h2 {
  font-family: var(--meta-font);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.entry-preview {
  padding: 1rem 0 1.35rem;
  border-bottom: 1px solid var(--border);
}

.entry-title {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
  line-height: 1.25;
}

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

.entry-location {
  margin: -0.2rem 0 0.75rem;
  color: var(--muted);
  font-family: var(--meta-font);
  font-size: 0.85rem;
}

.entry-summary {
  margin: 0;
  color: #444;
}

.badge {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: var(--meta-font);
}

.badge.worth-it {
  background: #dde7e4;
  color: #35564a;
}

.badge.chucked-out {
  background: #eee3e0;
  color: #7a4740;
}

.review-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.review-header h1 {
  margin-bottom: 0.5rem;
}

.review-meta-block {
  font-family: var(--meta-font);
}

.review-meta-block p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.review-summary {
  font-size: 1.1rem;
  color: #444;
  max-width: 34rem;
}

.prose {
  max-width: 38rem;
}

.prose p,
.review-page p,
.review-page ul,
.review-page ol {
  margin-top: 0;
  margin-bottom: 1rem;
}

figure {
  margin: 1.5rem 0;
}

.prose img {
  display: block;
  width: 100%;
  height: auto;
  margin: 1rem 0 0;
}

figcaption {
  margin-top: 0.1rem;
  text-align: right;
  line-height: 1.25;
}

figcaption a {
  color: inherit;
  text-decoration: underline;
}

.caption-text {
  display: block;
  font-size: 0.82rem;
  color: var(--text);
  font-style: italic;
}

.caption-credit {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.empty-state {
  color: var(--muted);
  font-family: var(--meta-font);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.site-footer {
  padding: 1.5rem 0 3rem;
  color: var(--muted);
  font-family: var(--meta-font);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 2rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--muted);
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.separator {
  opacity: 0.5;
}

@media (max-width: 700px) {
  html {
    font-size: 17px;
  }

  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .entry-title {
    font-size: 1.3rem;
  }
}