:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --surface: #fffdfa;
  --ink: #1e2528;
  --muted: #637074;
  --line: #ded7ca;
  --accent: #0e6f68;
  --accent-2: #b05d35;
  --shadow: 0 18px 60px rgba(41, 35, 27, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(247, 244, 238, 0.9)),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

.site-header,
main,
footer {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand {
  font-size: 18px;
  font-weight: 760;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover,
.post-card a:hover,
footer a:hover {
  color: var(--accent);
}

.intro {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: 48px;
  padding: 56px 0 44px;
}

.eyebrow,
.post-meta {
  margin: 0 0 10px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.status-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(30, 37, 40, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 111, 104, 0.13), rgba(176, 93, 53, 0.12)),
    var(--surface);
  box-shadow: var(--shadow);
}

.status-panel::before {
  content: "";
  display: block;
  height: 150px;
  background:
    linear-gradient(120deg, rgba(14, 111, 104, 0.68), rgba(176, 93, 53, 0.72)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 18px);
}

.status-line {
  padding: 24px 24px 8px;
}

.status-line span,
.status-grid span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.status-line strong {
  font-size: 22px;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.status-grid div {
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 253, 250, 0.86);
}

.content-band,
.about {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

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

.post-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.72);
}

.post-card.featured {
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(41, 35, 27, 0.08);
}

.post-card p:last-child,
.about p:last-child,
.article p:last-child {
  margin-bottom: 0;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 720;
}

.about {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 44px;
}

.article-shell {
  width: min(820px, calc(100% - 40px));
}

.article {
  margin: 48px 0;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article h1 {
  font-size: clamp(38px, 6vw, 62px);
}

.article h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 24px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro,
  .about {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: 42px;
  }

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

  .article {
    padding: 28px;
  }
}
