:root {
    --afs-ink: #0f1a16;
    --afs-ink-soft: #2d3b36;
    --afs-sand: #f4efe7;
    --afs-cream: #fdfbf7;
    --afs-surface: #ffffff;
    --afs-surface-muted: #f8f4ee;
    --afs-accent: #0f8a6b;
    --afs-accent-strong: #0b6d54;
    --afs-border: #e6ded3;
    --afs-border-strong: #d7cec2;
    --afs-shadow-sm: 0 10px 30px rgba(10, 20, 16, 0.08);
    --afs-shadow-md: 0 22px 60px rgba(10, 20, 16, 0.12);
    --afs-radius-lg: 18px;
    --afs-radius-md: 12px;
    --afs-radius-sm: 8px;
  }

  body {
    background: radial-gradient(1200px 600px at 15% -10%, #f3efe6 0%, #ffffff 55%) fixed,
      linear-gradient(180deg, #f7f2ea 0%, #ffffff 40%, #f7f2ea 100%);
    color: var(--afs-ink);
    font-family: "Figtree", "Helvetica Neue", sans-serif;
    letter-spacing: -0.01em;
  }

  h1, h2, h3, h4, h5, h6 {
    color: var(--afs-ink);
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  p, li {
    color: var(--afs-ink-soft);
  }

  a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
  }

  a:hover, a:focus {
    color: var(--afs-accent);
  }

  :focus-visible {
    outline: 3px solid rgba(15, 138, 107, 0.35);
    outline-offset: 3px;
  }

  .hm-container {
    max-width: 1180px;
  }

  .site-header {
    background: rgba(253, 251, 247, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--afs-border);
    box-shadow: 0 8px 26px rgba(18, 28, 24, 0.08);
  }

  .site-logo img {
    max-height: 64px;
  }

  .hm-entry,
  .hm-entry-single,
  .hm-archive .page-header,
  .hm-single .entry-content {
    border-radius: var(--afs-radius-lg);
    border: 1px solid var(--afs-border);
    background: var(--afs-surface);
    box-shadow: var(--afs-shadow-sm);
  }

  .hm-entry-single {
    padding: 32px 34px;
  }

  .hm-entry .post-thumbnail img,
  .hm-entry-single .post-thumbnail img {
    border-radius: var(--afs-radius-lg) var(--afs-radius-lg) 0 0;
  }

  .afs-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--afs-ink-soft);
    margin: 10px 0 18px;
  }

  .afs-breadcrumbs a {
    color: var(--afs-ink-soft);
    text-decoration: none;
  }

  .afs-breadcrumbs a:hover {
    color: var(--afs-accent);
  }

  .afs-crumb-current {
    color: var(--afs-ink);
    font-weight: 600;
  }

  @media (max-width: 980px) {
    .hm-entry-single {
      padding: 26px;
    }
  }
