:root {
  --paper: #F7F5EF;
  --paper-dim: #F1EEE4;
  --ink: #22201B;
  --olive: #3F4A32;
  --sage: #8A9A7E;
  --brass: #A5793F;
  --rule: #DEDACD;
  --max: 1040px;
}

/* ---------- Dark Mode Support ---------- */
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1A1A18;
    --paper-dim: #252420;
    --ink: #F2EFE9;
    --olive: #9AB084;
    --sage: #8A9A7E;
    --brass: #D4A373;
    --rule: #33312C;
  }
  .hero .dek,
  .hero-side p,
  .featured p,
  .page-lead {
    color: #A8A49C !important;
  }
  .post-row .dek,
  .signup p {
    color: #99958C !important;
  }
  .post-body,
  .standard-page-body {
    color: #D9D4CB !important;
  }
}
/* ---------- Sticky Footer Layout ---------- */
html, body {
  height: 100%;
}

.site-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-content {
  flex: 1;
  min-height: calc(100vh - 220px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

::selection {
  background: var(--sage);
  color: var(--paper);
}

/* ---------- Header ---------- */
.masthead {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 28px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
  width: 100%;
}

.masthead .name {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.masthead nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
}

.masthead nav a {
  text-decoration: none;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.masthead nav a:hover {
  opacity: 1;
  color: var(--olive);
}

@media (max-width: 640px) {
  .masthead {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .masthead nav {
    flex-wrap: wrap;
    gap: 18px 22px;
    font-size: 14px;
  }
}
/* ---------- Hero ---------- */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
}

.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  max-width: 15ch;
}

.hero .dek {
  font-size: 18px;
  color: #4B4A42;
  max-width: 46ch;
  margin: 0;
}

.hero-side {
  border-left: 1px solid var(--rule);
  padding-left: 32px;
  align-self: end;
}

.hero-side p {
  font-size: 15px;
  color: #4B4A42;
  margin: 0 0 16px;
}

.hero-side .role {
  font-size: 14px;
  color: var(--brass);
  margin: 0 0 6px;
}

@media (max-width: 780px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }
  .hero-side {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-left: 0;
    padding-top: 24px;
  }
}
/* ---------- Featured ---------- */
.featured {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 8px;
}

.featured a {
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}

.featured .thumb {
  aspect-ratio: 4/3;
  max-width: 600px;
  background: var(--olive);
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.featured .tag {
  font-size: 13px;
  color: var(--brass);
  margin: 0 0 10px;
}

.featured h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
}

.featured a p {
  font-size: 15.5px;
  color: #4B4A42;
  margin: 0;
  max-width: 48ch;
}

@media (max-width: 700px) {
  .featured a {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
/* ---------- Post list ---------- */
.posts {
  max-width: var(--max);
  margin: 0 auto;
}

.post-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: baseline;
  padding: 26px 13px;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
}

.post-row .date {
  font-size: 14px;
  color: var(--brass);
  white-space: nowrap;
}

.post-row .title {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.post-row .dek {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  color: #63625A;
  margin-top: 6px;
}

.post-row .arrow {
  font-size: 20px;
  color: var(--sage);
  transition: transform 0.15s ease, color 0.15s ease;
  align-self: center;
}

.post-row:hover .arrow {
  transform: translateX(3px);
  color: var(--olive);
}

.post-row:hover .title {
  color: var(--olive);
}

@media (max-width: 640px) {
  .post-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .post-row .arrow {
    display: none;
  }
}
/* ---------- Standard Pages & Single Posts ---------- */
.standard-page,
.post-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px 56px;
  width: 100%;
}

.standard-page-header,
.post-header {
  margin-bottom: 36px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 20px;
}

.standard-page h1,
.post-container h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}

.post-meta {
  font-size: 14px;
  color: var(--brass);
  margin: 0 0 0px;
}

.post-image-wrapper {
  margin-bottom: 40px;
}
.post-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.standard-page-body,
.post-body {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.7;
}
.standard-page-body p,
.post-body p {
  margin: 0 0 20px;
}

/* ---------- Newsletter strip ---------- */
.signup {
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 44px 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.signup h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 21px;
  margin: 0 0 6px;
}

.signup p {
  margin: 0;
  font-size: 14.5px;
  color: #63625A;
}

.signup form {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--ink);
  min-width: 280px;
}

.signup input {
  border: none;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  padding: 8px 4px;
  flex: 1;
  outline: none;
  color: var(--ink);
}

.signup button {
  border: none;
  background: none;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--olive);
  cursor: pointer;
  padding: 8px 4px;
}

/* ---------- Footer ---------- */
footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #8D8B7F;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

footer .socials {
  display: flex;
  gap: 18px;
}

footer .socials a {
  text-decoration: none;
  color: #8D8B7F;
}

footer .socials a:hover {
  color: var(--olive);
}

/* ---------- Pages & Errors ---------- */
.page-container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 28px 120px;
}

.page-header {
  margin-bottom: 24px;
}

.page-kicker {
  font-size: 14px;
  color: var(--brass);
  margin: 0 0 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
}

.page-container h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.page-lead {
  font-size: 18px;
  color: #4B4A42;
  max-width: 42ch;
  margin: 0 0 32px;
  line-height: 1.6;
}

.button {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--paper);
  background: var(--olive);
  padding: 12px 24px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.button:hover {
  opacity: 0.9;
}

.arche-cta {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.arche-cta p {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
}
.arche-cta a {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .arche-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.social-links-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.social-links-list li a {
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.social-links-list li a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.social-links-list li a i {
  width: 20px;
  text-align: center;
}

#page-hero {
  padding: 64px 28px 0px;
}

#page-posts {
  padding: 0 28px 0px;
}

.photo-caption-callout {
  max-width: 600px;
  padding: 20px 28px;
  background-color: var(--paper-dim);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 15.5px;
  color: #4B4A42;
  line-height: 1.5;
  border-radius: 8px;
}
.photo-caption-callout p {
  margin: 0;
  max-width: 65ch;
}
.photo-caption-callout strong {
  color: var(--ink);
  font-weight: 500;
}

/*# sourceMappingURL=main.css.map */