:root {
  --ink: #151515;
  --muted: #62615d;
  --line: #d8d3c7;
  --paper: #f7f4ee;
  --white: #fffdf8;
  --red: #b3392c;
  --gold: #c79b3b;
  --shadow: 0 24px 60px rgba(21, 21, 21, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fbfaf5 0%, #f2efe6 54%, #e9eee9 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
p {
  margin: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  gap: clamp(28px, 6vw, 76px);
  width: min(1200px, calc(100% - 40px));
  min-height: 86vh;
  margin: 0 auto;
  padding: 34px 0 64px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: clamp(28px, 8vh, 78px);
  color: var(--muted);
  font-weight: 760;
}

.site-nav a:first-child {
  color: var(--ink);
  font-weight: 880;
}

.site-nav a:hover,
.story a:hover,
.site-footer a:hover {
  color: var(--red);
}

.eyebrow,
.section-kicker {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8vw, 7rem);
  font-weight: 500;
  line-height: 0.94;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 16px;
  background: var(--white);
  font-weight: 750;
}

.button.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.portrait {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait figcaption {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: var(--muted);
  line-height: 1.4;
}

.portrait figcaption span {
  color: var(--ink);
  font-weight: 850;
}

.story {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.story article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 280px;
  border-right: 1px solid var(--line);
  padding: 24px;
}

.story article:last-child {
  border-right: 0;
}

.story span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.04;
}

.story p {
  color: var(--muted);
  line-height: 1.55;
}

.story a {
  width: max-content;
  border-bottom: 2px solid var(--red);
  padding-bottom: 4px;
  color: var(--red);
  font-weight: 850;
}

.writing {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: 48px;
  width: min(1200px, calc(100% - 40px));
  margin: 86px auto 118px;
}

.writing h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.writing-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.writing-list a {
  display: grid;
  grid-template-columns: 156px minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 253, 248, 0.96);
  color: var(--muted);
  line-height: 1.45;
}

.writing-list a:hover {
  background: var(--white);
}

.writing-list img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 5px;
  object-fit: cover;
  background: #eee8da;
}

.writing-list span {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding: 28px 20px 34px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.62);
  font-size: 0.95rem;
}

.site-footer span {
  color: var(--ink);
  font-weight: 850;
}

.about-hero {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.about-intro {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-top: clamp(44px, 12vh, 110px);
}

.about-intro h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  font-weight: 500;
  line-height: 0.96;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: clamp(30px, 6vw, 72px);
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  align-items: start;
}

.about-main {
  display: grid;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.about-main p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.about-main p:first-child {
  color: var(--ink);
  font-size: clamp(1.24rem, 2vw, 1.62rem);
  line-height: 1.5;
}

.about-card {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.about-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #eee8da;
}

.about-card div {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 780;
}

.about-card span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1200px, calc(100% - 40px));
  margin: 90px auto 118px;
  border: 1px solid var(--line);
  background: var(--white);
}

.about-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 24px;
}

.about-grid article:last-child {
  border-right: 0;
}

.about-grid span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-grid h2 {
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.04;
}

.about-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.posts-hero {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 54px;
}

.posts-intro {
  display: grid;
  gap: 18px;
  max-width: 1060px;
  margin-top: clamp(44px, 12vh, 110px);
}

.posts-intro h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.2vw, 6.1rem);
  font-weight: 500;
  line-height: 0.96;
}

.posts-list {
  display: grid;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto 118px;
  border-top: 1px solid var(--line);
}

.post-row {
  border-bottom: 1px solid var(--line);
}

.post-row a {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  padding: 30px 0;
}

.post-row a:hover h2 {
  color: var(--red);
}

.post-meta {
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--muted);
  font-weight: 760;
}

.post-meta time {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-meta span {
  color: var(--muted);
}

.post-summary {
  display: grid;
  gap: 14px;
}

.post-summary h2 {
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

.post-summary p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

@media (max-width: 860px) {
  .hero,
  .story,
  .writing,
  .about-hero,
  .about-body,
  .about-grid,
  .posts-hero,
  .posts-list {
    width: min(100% - 28px, 680px);
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .site-nav {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .about-intro h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .posts-intro h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .story article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story article:last-child {
    border-bottom: 0;
  }

  .about-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-grid article:last-child {
    border-bottom: 0;
  }

  .writing-list a {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .post-row a {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .writing-list span {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  .action-row .button {
    flex: 1 1 120px;
  }

  .writing-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .writing-list span {
    grid-column: auto;
  }
}
