:root {
  --bg: #081119;
  --bg-deep: #050b11;
  --panel: rgba(10, 18, 24, 0.78);
  --panel-strong: rgba(12, 22, 30, 0.92);
  --text: #f4ecdd;
  --muted: #b8ad9d;
  --soft: #8f9da8;
  --line: rgba(244, 236, 221, 0.12);
  --line-strong: rgba(244, 236, 221, 0.2);
  --accent: #d9ae63;
  --accent-strong: #f0cb87;
  --accent-cool: #8fd0c2;
  --shadow-xl: 0 28px 80px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 18px 42px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 174, 99, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(143, 208, 194, 0.16), transparent 24%),
    linear-gradient(180deg, #071018 0%, #0a1219 48%, #101922 100%);
  font-family: "Avenir Next", "Avenir", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}

body::before {
  top: 18%;
  right: -8rem;
  width: 16rem;
  height: 16rem;
  background: rgba(143, 208, 194, 0.08);
}

body::after {
  bottom: -5rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(217, 174, 99, 0.08);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

a:hover {
  color: var(--accent-strong);
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.skip-link:focus,
.screen-reader-text:focus {
  left: 1rem;
  top: 1rem;
  z-index: 20;
  background: #ffffff;
  color: #101316;
  border: 1px solid rgba(16, 19, 22, 0.18);
  padding: 0.55rem 0.8rem;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 32px));
  margin: 1.25rem auto 2.5rem;
  padding: 1.2rem 1.4rem 1.8rem;
  background: linear-gradient(180deg, rgba(9, 16, 22, 0.88), rgba(10, 18, 24, 0.74));
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(22px);
}

.home-shell {
  width: min(1400px, calc(100% - 32px));
  min-height: calc(100svh - 2.5rem);
  padding: 1.4rem 1.75rem 1.9rem;
  overflow: clip;
  background:
    linear-gradient(135deg, rgba(8, 15, 21, 0.96), rgba(9, 16, 22, 0.8) 38%, rgba(12, 23, 31, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%);
}

.home-shell::before,
.home-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.home-shell::before {
  top: -8rem;
  right: 10%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(217, 174, 99, 0.16), transparent 70%);
  animation: ambient-shift 16s ease-in-out infinite alternate;
}

.home-shell::after {
  left: -6rem;
  bottom: 8%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(143, 208, 194, 0.16), transparent 72%);
  animation: ambient-shift 18s ease-in-out infinite alternate-reverse;
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-shell .site-header {
  animation: rise-in 640ms ease both;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif SC", serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand-note {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a,
.site-menu a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
}

.site-nav a::after,
.site-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current_page_item > a {
  color: var(--text);
}

.site-nav a:hover::after,
.site-menu a:hover::after,
.site-menu .current-menu-item > a::after,
.site-menu .current_page_item > a::after {
  transform: scaleX(1);
}

.landing-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.8rem);
  margin-top: clamp(1.2rem, 3vw, 2rem);
}

.hero {
  position: relative;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 4vw, 4.25rem);
  align-items: end;
  min-height: calc(100svh - 9.5rem);
}

.hero-copy {
  max-width: 42rem;
}

.home-shell .hero-copy {
  animation: rise-in 780ms ease both;
}

.eyebrow,
.section-label {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 1rem;
  color: var(--soft);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.entry-header h1,
.section-copy h2,
.principle-intro h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif SC", serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11.5ch;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
}

.hero h1 span {
  display: block;
  color: var(--accent-strong);
  text-shadow: 0 0 32px rgba(240, 203, 135, 0.14);
}

.lead {
  margin: 1.15rem 0 0;
  max-width: 39rem;
  font-size: 1.08rem;
  color: rgba(244, 236, 221, 0.95);
}

.sublead,
.section-text,
.excerpt,
.archive-item p,
.feature-block p:last-child,
.principle-list p,
.entry-meta,
.footer-note,
.no-posts {
  color: var(--muted);
}

.sublead {
  margin: 0.8rem 0 0;
  max-width: 39rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #171411;
  box-shadow: 0 16px 32px rgba(217, 174, 99, 0.2);
}

.button-primary:hover {
  color: #171411;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.75rem;
  margin-top: 1.3rem;
}

.hero-links a {
  text-decoration: none;
  padding: 0.4rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-links a:hover {
  border-color: rgba(240, 203, 135, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.hero-links-minimal a {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--soft);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-links-minimal a:hover {
  color: var(--text);
  background: transparent;
  transform: none;
}

.hero-stage {
  position: relative;
  display: grid;
  align-self: stretch;
}

.home-shell .hero-stage {
  animation: rise-in 980ms 100ms ease both;
}

.signal-board {
  position: relative;
  align-self: center;
  padding: 1.25rem;
  border: 1px solid rgba(244, 236, 221, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(12, 22, 30, 0.92), rgba(12, 22, 30, 0.62)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 44%);
  box-shadow: var(--shadow-lg);
  overflow: clip;
  animation: drift 12s ease-in-out infinite;
}

.signal-board::before {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 208, 194, 0.14), transparent 70%);
}

.signal-top,
.signal-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--soft);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.05rem 0;
}

.signal-cell {
  position: relative;
  min-height: 9.25rem;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(244, 236, 221, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.signal-cell p {
  margin: 0;
  color: var(--accent-cool);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.signal-cell strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
}

.hero-footnote {
  margin: 1rem 0 0;
  color: var(--soft);
  text-align: right;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section {
  display: grid;
  gap: 1.45rem;
}

.section-copy {
  max-width: 44rem;
}

.section-copy h2,
.principle-intro h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.feature-block {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-strong);
}

.feature-block:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 203, 135, 0.38);
}

.feature-index,
.post-index,
.principle-list > li > span {
  margin: 0;
  color: var(--soft);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-block h3,
.post-item h3,
.archive-item h4,
.principle-list h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif SC", serif;
  line-height: 1.08;
}

.feature-block h3 {
  font-size: 1.45rem;
}

.feature-block p:last-child {
  margin: 0.55rem 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.view-all {
  color: var(--soft);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.post-list,
.archive-list,
.chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-list {
  border-top: 1px solid var(--line-strong);
}

.post-item {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(244, 236, 221, 0.12);
}

.post-item:last-child {
  border-bottom: 0;
}

.writing-section .post-item article {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.writing-section .post-copy h3 {
  margin-top: 0.25rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  max-width: 24ch;
}

.writing-section .post-copy h3 a,
.archive-item h4 a,
.post-item h3 a {
  text-decoration: none;
}

.writing-section .post-copy h3 a:hover,
.archive-item h4 a:hover,
.post-item h3 a:hover {
  text-decoration: underline;
}

.meta,
.archive-meta,
.year-head p {
  color: var(--soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta {
  margin: 0;
}

.excerpt {
  margin: 0.65rem 0 0;
  max-width: 46rem;
}

.principle-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  gap: 1.75rem;
}

.principle-list {
  border-top: 1px solid var(--line-strong);
}

.principle-list li {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(244, 236, 221, 0.12);
}

.principle-list li:last-child {
  border-bottom: 0;
}

.principle-list h3 {
  font-size: 1.12rem;
}

.principle-list p {
  margin: 0.45rem 0 0;
}

.cta-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-strong);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.25rem 0;
}

.page-intro {
  padding: 1.45rem 0 0.35rem;
}

.page-intro h1,
.entry-header h1 {
  max-width: 14ch;
  font-size: clamp(2.45rem, 5vw, 4.1rem);
}

.panel {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    rgba(255, 255, 255, 0.02);
}

.work-section {
  gap: 1rem;
}

.work-card {
  display: grid;
  gap: 1rem;
}

.work-card-copy h3 {
  margin: 0.25rem 0 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif SC", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.06;
}

.work-card-copy h3 a {
  text-decoration: none;
}

.work-card-copy h3 a:hover {
  text-decoration: underline;
}

.work-card .chip-list span {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  color: var(--muted);
}

.work-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.case-shell {
  width: min(1180px, calc(100% - 32px));
}

.case-hero h1 {
  max-width: 13ch;
}

.case-grid,
.metrics-grid {
  display: grid;
  gap: 1rem;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card,
.evidence-card,
.priority-tier {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.metric-card {
  min-height: 10.5rem;
  padding: 1rem;
}

.metric-card strong {
  display: block;
  margin-top: 0.7rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
  color: var(--accent-strong);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif SC", serif;
}

.metric-card span {
  display: block;
  margin-top: 0.85rem;
  color: var(--muted);
}

.evidence-card {
  padding: 1rem 1rem 1.05rem;
}

.evidence-card h3,
.priority-tier h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Noto Serif SC", serif;
  font-size: 1.28rem;
  line-height: 1.12;
}

.evidence-card p:last-child,
.priority-tier p:last-child {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.priority-stack {
  display: grid;
  gap: 1rem;
}

.priority-tier {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.tier-badge-primary {
  background: linear-gradient(135deg, #203255, #31487a);
  color: #f6efe2;
}

.tier-badge-secondary {
  background: linear-gradient(135deg, #7b5318, #bf8a2c);
  color: #fff8ed;
}

.tier-badge-tertiary {
  background: linear-gradient(135deg, #0d5e5f, #179297);
  color: #f0fffb;
}

.diagnosis-list {
  border-top: 0;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.chip-list li {
  margin: 0;
}

.chip-list a {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
}

.chip-list a:hover {
  border-color: rgba(240, 203, 135, 0.4);
}

.archive-layout,
.archive-year,
.entry-layout {
  margin-top: 1.35rem;
}

.year-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(244, 236, 221, 0.12);
}

.year-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.archive-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(244, 236, 221, 0.08);
}

.archive-item:last-child {
  border-bottom: 0;
}

.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.65rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(240, 203, 135, 0.28);
  background: rgba(240, 203, 135, 0.08);
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 0.12rem 0.5rem;
  font-size: 0.72rem;
  line-height: 1.2;
}

.badge-live {
  border-color: rgba(143, 208, 194, 0.3);
  background: rgba(143, 208, 194, 0.08);
  color: var(--accent-cool);
}

.archive-item h4 {
  margin-top: 0.45rem;
  font-size: 1.25rem;
}

.prose p {
  margin: 0.55rem 0;
}

.prose ul,
.entry-content ul,
.entry-content ol {
  margin: 0.65rem 0;
  padding-left: 1.1rem;
}

.entry-header {
  margin-bottom: 1rem;
}

.entry-meta {
  margin-top: 0.7rem;
  font-size: 0.88rem;
}

.entry-content p,
.entry-content blockquote {
  margin: 0.85rem 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.45rem;
  margin-bottom: 0.55rem;
  line-height: 1.25;
}

.entry-content pre {
  overflow-x: auto;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.entry-content code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
}

.entry-footer {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-navigation {
  margin-top: 1.35rem;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.stack-list {
  display: grid;
  gap: 0.45rem;
}

.stack-panels {
  display: grid;
  gap: 1rem;
}

.stack-list li {
  margin: 0;
}

.site-footer {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

.site-footer a {
  color: inherit;
}

.dot {
  display: inline-block;
  margin: 0 0.35rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes ambient-shift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(1rem, -1rem, 0) scale(1.08);
  }
}

@media (max-width: 1080px) {
  .hero-home,
  .principle-section,
  .case-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-stage {
    max-width: 760px;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .priority-tier {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    font-size: 15px;
  }

  .page-shell,
  .home-shell {
    width: calc(100% - 20px);
    margin: 10px auto 20px;
    padding: 1rem 1rem 1.4rem;
    border-radius: 22px;
  }

  .site-header,
  .section-head,
  .year-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a,
  .site-menu a {
    letter-spacing: 0.14em;
  }

  .hero h1,
  .page-intro h1,
  .entry-header h1,
  .section-copy h2,
  .principle-intro h2 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-links {
    gap: 0.55rem 0.8rem;
  }

  .hero-links:not(.hero-links-minimal) a {
    padding: 0.42rem 0.72rem;
  }

  .signal-grid,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .writing-section .post-item article,
  .principle-list li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .writing-section .post-copy h3 {
    max-width: none;
  }

  .panel {
    padding: 0.9rem;
  }

  .post-navigation .nav-links {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
