:root {
  --paper: #fbfaf6;
  --ink: #181715;
  --muted: #706b62;
  --line: #ded8cc;
  --gold: #a87836;
  --green: #334f43;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 0;
  height: 3px;
  background: var(--gold);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.post {
  width: min(100% - 40px, 1060px);
  margin: 58px auto 90px;
}

.intro {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.category {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2,
.pullquote p {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 0.85;
}

.dek {
  max-width: 660px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.38rem);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.image-wrap {
  width: min(100%, 920px);
  margin: 0 auto 50px;
}

.image-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.05);
}

.lead {
  width: min(100%, 760px);
  margin: 0 auto 20px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.28;
}

.entry {
  display: grid;
  grid-template-columns: 90px minmax(0, 680px);
  gap: 28px;
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.entry span {
  color: var(--gold);
  font-weight: 700;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.entry p,
.post-footer p {
  color: var(--muted);
}

.pullquote {
  width: min(100%, 880px);
  margin: 28px auto;
  padding: clamp(30px, 6vw, 64px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  text-align: center;
}

.pullquote p {
  margin: 0;
  color: var(--green);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 0.98;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 820px);
  margin: 36px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.post-footer p {
  margin: 0;
}

.post-footer a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  padding: 0 18px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 680px) {
  .header,
  .post {
    width: min(100% - 24px, 1060px);
  }

  .entry {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .post-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-wrap img {
    aspect-ratio: 4 / 3;
  }
}
