:root {
  --ink: #173125;
  --ink-deep: #10251b;
  --paper: #f5f3ee;
  --paper-light: #fbfaf7;
  --gold: #c9a24b;
  --muted: #536159;
  --line: rgba(23, 49, 37, .16);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --frame: min(1080px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink-deep);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: var(--ink-deep); }
.frame { width: var(--frame); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 20; background: white; padding: 10px 14px; }
.skip-link:focus { top: 16px; }

.site-nav {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, .96);
  color: var(--ink);
}
.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 102px; height: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 23px; }
.nav-links > a {
  color: rgba(23, 49, 37, .75);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 5px;
}
.nav-links > a:hover,
.nav-links > a:focus-visible,
.nav-links > a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
}
.newsletter-trigger {
  color: var(--ink);
  border-color: rgba(23, 49, 37, .35);
}
.newsletter-trigger:hover,
.newsletter-trigger:focus-visible {
  border-color: var(--gold);
  background: rgba(201, 162, 75, .08);
}

.blog-intro { padding: clamp(40px, 5vw, 58px) 0 30px; }
.eyebrow,
.post-meta {
  margin: 0;
  color: #8a6b27;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.blog-intro h1 {
  max-width: 720px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .96;
}
.lede {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
}
.post-tag {
  margin-left: 8px;
  color: rgba(83, 97, 89, .55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
}
.post-tag::before {
  content: "\00b7";
  margin-right: 8px;
}
.post-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.filter-chip {
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .05em;
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}
.filter-chip:hover,
.filter-chip:focus-visible {
  border-color: rgba(126, 99, 40, .48);
  color: #7e6328;
}
.filter-chip[aria-pressed="true"] {
  border-color: #7e6328;
  background: rgba(201, 162, 75, .1);
  color: #7e6328;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 110px;
}
.post-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #fff 0%, #fff 72%, rgba(201, 162, 75, .045) 100%);
  box-shadow: 0 18px 46px -42px rgba(16, 37, 27, .7);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}
.post-card[hidden] { display: none; }
.post-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 28px auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e7d29c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}
.post-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  right: -95px;
  top: -110px;
  border-radius: 50%;
  background: rgba(201, 162, 75, .11);
  filter: blur(1px);
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}
.post-card:hover,
.post-card:focus-within {
  border-color: rgba(126, 99, 40, .48);
  box-shadow: 0 28px 60px -40px rgba(16, 37, 27, .55);
  transform: translateY(-4px);
}
.post-card:hover::before,
.post-card:focus-within::before {
  transform: scaleX(1);
}
.post-card:hover::after,
.post-card:focus-within::after {
  opacity: 1;
  transform: translate(-8px, 8px);
}
.post-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: 240px;
}
.post-card h2 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3.4vw, 42px);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.post-card h2 a { text-decoration: none; transition: color 220ms ease; }
.post-card:hover h2 a,
.post-card:focus-within h2 a { color: #7e6328; }
.post-card > p:not(.post-meta) {
  max-width: 46ch;
  margin: 17px 0 0;
  color: var(--muted);
}
.read-link,
.back-link {
  color: #7e6328;
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(126, 99, 40, .4);
  text-underline-offset: 5px;
}
.read-link { margin-top: auto; padding-top: 32px; }
.read-link::after {
  content: " →";
  display: inline-block;
  text-decoration: none;
  transition: transform 220ms ease;
}
.post-card:hover .read-link::after,
.post-card:focus-within .read-link::after { transform: translateX(4px); }

@media (prefers-reduced-motion: reduce) {
  .post-card,
  .post-card::before,
  .post-card::after,
  .post-card h2 a,
  .read-link::after { transition: none; }
}

.article {
  max-width: 790px;
  padding-top: 70px;
  padding-bottom: 110px;
}
.article .post-meta { margin-top: 60px; }
.article h1 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(49px, 7vw, 78px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .98;
}
.article-deck {
  margin: 27px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(23px, 3vw, 30px);
  line-height: 1.35;
}
.article-byline {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.byline-names {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}
.byline-note {
  margin: 4px 0 0;
  color: rgba(83, 97, 89, .72);
  font-size: 12px;
  font-style: italic;
}
.article-copy {
  max-width: 710px;
  margin-top: 52px;
  color: #354b40;
  font-size: 18px;
  line-height: 1.82;
}
.article-copy h2 {
  margin: 2.7rem 0 .85rem;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.article-copy p { margin: 1.25rem 0; }
.article-copy ul,
.article-copy ol { margin: 1.25rem 0; padding-left: 1.45rem; }
.article-copy li { margin: .55rem 0; }
.article-copy a {
  color: #7e6328;
  font-weight: 700;
  text-decoration-color: rgba(126, 99, 40, .42);
  text-underline-offset: 4px;
}
.article-copy strong { color: var(--ink-deep); }
.article-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper-light);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.article-cta:hover,
.article-cta:focus-visible {
  border-color: #7e6328;
  background: #7e6328;
}

.site-footer { background: var(--ink-deep); color: var(--paper); }
.footer-inner {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner span {
  color: rgba(245, 243, 238, .58);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}
.footer-right { display: flex; align-items: center; gap: 22px; }
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(245, 243, 238, .18);
  border-radius: 50%;
  color: rgba(245, 243, 238, .65);
  transition: color 200ms ease, border-color 200ms ease;
}
.footer-social:hover,
.footer-social:focus-visible { color: var(--paper); border-color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; display: block; fill: currentColor; }

@media (max-width: 760px) {
  :root { --frame: calc(100vw - 36px); }
  .nav-inner { min-height: 72px; gap: 12px; }
  .brand img { width: 78px; }
  .nav-links { gap: 9px; }
  .nav-links > a { display: none; }
  .nav-links > a[aria-current="page"] { display: block; font-size: 10px; }
  .post-grid { grid-template-columns: 1fr; }
  .post-card:last-child:nth-child(odd) { grid-column: auto; }
  .blog-intro { padding-top: 36px; padding-bottom: 26px; }
  .post-card { min-height: 260px; padding: 28px; }
  .article { padding-top: 50px; }
  .article .post-meta { margin-top: 46px; }
  .article-copy { font-size: 17px; }
  .footer-inner { min-height: 128px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; }
}
