:root {
  --paper: #f7f3ec;
  --ink: #242521;
  --muted: #6f736b;
  --coral: #c45d4b;
  --sage: #dce5dc;
  --blue: #dbe7e9;
  --line: rgba(36, 37, 33, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; width: 100%; }

.site-header { min-height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; padding: 32px 5vw 25px; }
.brand { display: flex; flex-direction: column; align-items: center; }
.brand span, .footer-brand { color: var(--coral); font-family: Georgia, "Times New Roman", serif; font-size: 56px; line-height: .9; }
.brand small { margin-top: 10px; color: var(--muted); font-size: 10px; letter-spacing: 3px; }
.main-nav { display: flex; gap: clamp(36px, 6vw, 80px); }
.main-nav a { position: relative; font-size: 12px; font-weight: 600; letter-spacing: 3px; }
.main-nav a::after { position: absolute; bottom: -8px; left: 0; width: 0; height: 1px; background: var(--coral); content: ""; transition: width .25s; }
.main-nav a:hover::after { width: calc(100% - 3px); }
.menu-button { display: none; }

.hero { min-height: 690px; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; background: var(--blue); }
.hero-photo { min-height: 690px; background-position: center; background-size: cover; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 8vw, 130px); background: var(--sage); }
.eyebrow { margin: 0 0 20px; color: var(--coral); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
.hero h1, .archive-heading h1, .content-header h1, .about-page h1 { margin: 0 0 26px; font-size: clamp(42px, 5vw, 72px); font-weight: 300; line-height: 1.25; letter-spacing: 0; }
.hero h1 em { color: var(--coral); font-family: Georgia, "Songti SC", serif; font-weight: 600; }
.hero-copy > p:not(.eyebrow) { max-width: 440px; margin: 0 0 34px; color: #51564f; font-size: 16px; font-weight: 300; line-height: 2; }
.text-link { width: fit-content; padding-bottom: 5px; border-bottom: 1px solid; font-size: 12px; font-weight: 600; letter-spacing: 1px; }
.text-link span { margin-left: 9px; color: var(--coral); }

.listing { max-width: 1180px; margin: 0 auto; padding: 115px 40px 130px; }
.home-section.tinted { max-width: none; padding-right: max(40px, calc((100vw - 1100px) / 2)); padding-left: max(40px, calc((100vw - 1100px) / 2)); background: #e7e1d7; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 45px; }
.section-heading h2, .about-preview h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); font-weight: 300; letter-spacing: 0; }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 54px 30px; }
.post-card { min-width: 0; }
.post-image { display: block; overflow: hidden; aspect-ratio: 4 / 3; background: #dedbd3; }
.post-image img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-image img { transform: scale(1.025); }
.post-info { padding-top: 22px; }
.post-meta { margin: 0 0 12px; color: var(--coral); font-size: 10px; font-weight: 600; letter-spacing: 1.5px; }
.post-info h3 { margin: 0 0 12px; font-size: 23px; font-weight: 400; line-height: 1.5; }
.post-info > p:not(.post-meta) { min-height: 54px; margin: 0 0 20px; color: var(--muted); font-size: 13px; font-weight: 300; line-height: 1.8; }
.read-more { padding-bottom: 3px; border-bottom: 1px solid; font-size: 11px; font-weight: 600; letter-spacing: 1px; }

.about-preview, .about-page { display: grid; grid-template-columns: 1fr 1fr; background: var(--blue); }
.about-preview > img, .about-page > img { height: 100%; min-height: 650px; object-fit: cover; object-position: center 35%; }
.about-preview > div, .about-page > div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(60px, 9vw, 135px); }
.about-preview > div > p:not(.eyebrow), .about-page > div > p:not(.eyebrow) { max-width: 480px; margin: 0 0 25px; color: #555953; font-size: 15px; font-weight: 300; line-height: 2; }
.about-preview .text-link { margin-top: 10px; }
.profile-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 10px 0 35px; font-size: 12px; font-weight: 600; }

.archive-page { padding-top: 85px; }
.archive-heading { max-width: 650px; margin-bottom: 75px; }
.archive-heading > p:last-child { color: var(--muted); font-weight: 300; line-height: 1.8; }
.not-found { min-height: 55vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 70px 24px 110px; text-align: center; }
.not-found h1 { margin: 0 0 18px; font-size: clamp(36px, 5vw, 62px); font-weight: 300; }
.not-found > p:not(.eyebrow) { margin: 0 0 30px; color: var(--muted); }

.content-page { max-width: 1080px; margin: 0 auto; padding: 75px 40px 130px; }
.content-header { max-width: 780px; margin: 0 auto 55px; text-align: center; }
.content-header h1 { font-size: clamp(38px, 5vw, 64px); }
.lede { color: var(--muted); font-size: 17px; font-weight: 300; line-height: 1.8; }
.content-date { margin-top: 28px; color: var(--muted); font-size: 11px; letter-spacing: 1px; }
.content-cover { max-height: 680px; margin-bottom: 70px; object-fit: cover; }
.prose { max-width: 720px; margin: 0 auto; font-size: 16px; font-weight: 300; line-height: 2; }
.prose h2 { margin: 2.3em 0 .7em; font-size: 28px; font-weight: 500; }
.prose h3 { margin: 2em 0 .6em; font-size: 21px; font-weight: 500; }
.prose p, .prose ul, .prose ol { margin: 0 0 1.5em; }
.prose a { color: var(--coral); border-bottom: 1px solid; }
.prose blockquote { margin: 2em 0; padding: 5px 0 5px 24px; border-left: 2px solid var(--coral); color: var(--muted); }
.prose img { margin: 2.5em auto; }
.prose iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; }

footer { display: flex; flex-direction: column; align-items: center; padding: 80px 30px 45px; text-align: center; }
.footer-brand { font-size: 42px; }
footer > p { color: var(--muted); font-size: 13px; }
.social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin: 26px 0 45px; }
.social-links a { font-size: 11px; font-weight: 600; letter-spacing: 1px; }
footer small { color: #94968f; font-size: 10px; letter-spacing: 1px; }

@media (max-width: 800px) {
  .site-header { min-height: 112px; flex-direction: row; justify-content: space-between; padding: 20px 22px; }
  .brand { align-items: flex-start; }
  .brand span { font-size: 41px; }
  .brand small { display: none; }
  .menu-button { position: relative; z-index: 3; display: grid; gap: 6px; width: 40px; height: 40px; place-content: center; border: 0; background: transparent; }
  .menu-button span { width: 23px; height: 1px; background: var(--ink); transition: transform .2s; }
  .main-nav { position: fixed; z-index: 2; inset: 0; display: none; flex-direction: column; align-items: center; justify-content: center; gap: 40px; background: var(--paper); }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 15px; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 58vh; }
  .hero-copy { padding: 62px 26px 72px; }
  .listing, .content-page { padding: 80px 22px 95px; }
  .home-section.tinted { padding-right: 22px; padding-left: 22px; }
  .section-heading { align-items: flex-start; gap: 22px; }
  .section-heading .text-link { margin-top: 12px; white-space: nowrap; }
  .post-grid { grid-template-columns: 1fr; gap: 50px; }
  .post-info > p:not(.post-meta) { min-height: auto; }
  .about-preview, .about-page { grid-template-columns: 1fr; }
  .about-preview > img, .about-page > img { min-height: 64vh; }
  .about-preview > div, .about-page > div { padding: 65px 26px 75px; }
  .archive-heading { margin-bottom: 55px; }
  .content-header { margin-bottom: 38px; }
  .content-cover { margin-bottom: 45px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .post-image img { transition: none; }
}
