  :root {
    --bg:    #0E0F11;
    --bg-1:  #131418;
    --ink:   #ECEAE4;
    --ink-2: #BBBAB4;
    --mute:  #7B7C81;
    --mute-2:#4A4B50;
    --rule:  #21232A;
    --link:  #DDD8C7;
    --link-h:#F5E6A8;

    --sans:  "Geist", ui-sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
    --mono:  "Geist Mono", ui-monospace, "Courier New", monospace;

    --measure: 660px;
    --measure-wide: 1080px;
    --x: 28px;
    --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "ss01" 1, "kern" 1;
    font-variant-numeric: tabular-nums oldstyle-nums;
    overflow-x: hidden;
  }

  body { background: var(--bg); color: var(--ink); min-height: 100vh; }

  ::selection { background: var(--ink); color: var(--bg); }

  a {
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px solid var(--mute-2);
    transition: color 0.18s var(--ease), border-color 0.18s var(--ease);
    padding-bottom: 1px;
  }
  a:hover { color: var(--link-h); border-bottom-color: var(--link-h); }
  *:focus-visible { outline: 1px solid var(--link-h); outline-offset: 3px; }

  /* header */
  .top {
    padding: 22px var(--x);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .top .mark {
    font-size: 14px;
    color: var(--ink);
    border: none;
    font-weight: 500;
    letter-spacing: -0.01em;
  }
  .top .mark:hover { color: var(--link-h); }
  .top .mark .dot { color: var(--mute); margin: 0 2px; }
  .top nav { display: flex; gap: 26px; font-size: 13px; }
  .top nav a {
    color: var(--mute);
    border: none;
  }
  .top nav a:hover { color: var(--ink); }

  main { padding: 0 var(--x); }
  .reading { max-width: var(--measure); margin: 0 auto; }
  .wider   { max-width: var(--measure-wide); margin: 0 auto; }

  /* hero / personal letter */
  .hero { padding: 88px 0 110px; }
  .hero-wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 var(--x);
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 56px;
    align-items: start;
  }
  .hero-portrait {
    width: 160px;
  }
  .hero-portrait img {
    width: 160px;
    height: 200px;
    object-fit: cover;
    object-position: 50% 28%;
    display: block;
    filter: contrast(1.05) saturate(0.94) brightness(0.96);
    border: 1px solid var(--mute-2);
  }
  .hero-portrait .credit {
    margin-top: 10px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--mute);
    letter-spacing: 0.06em;
    line-height: 1.6;
  }
  .hero .greeting {
    font-size: 15px;
    color: var(--mute);
    margin-bottom: 40px;
  }
  .hero .greeting .name {
    color: var(--ink);
    font-weight: 500;
  }
  .hero .lede {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    line-height: 1.28;
    letter-spacing: -0.022em;
    color: var(--ink);
    font-weight: 400;
    margin-bottom: 1.4em;
    max-width: 22ch;
  }
  .hero .body {
    font-size: 17.5px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 56ch;
  }
  .hero .body p { margin-bottom: 1.1em; }
  .hero .body p:last-child { margin-bottom: 0; }
  .hero .body strong { color: var(--ink); font-weight: 500; }

  .hero .signature {
    margin-top: 46px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--mute);
    flex-wrap: wrap;
  }
  .hero .signature .name {
    color: var(--ink);
    font-weight: 500;
    margin-right: 4px;
  }
  .hero .signature .role a { color: var(--link); border-bottom-color: transparent; }
  .hero .signature .role a:hover { color: var(--link-h); border-bottom-color: var(--link-h); }

  /* sections */
  .block {
    padding: 70px 0 30px;
    border-top: 1px solid var(--rule);
  }
  .block .label {
    font-size: 13px;
    color: var(--mute);
    margin-bottom: 56px;
  }

  /* work */
  .work-list { display: flex; flex-direction: column; }
  .work-item {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 56px;
    padding: 36px 0;
    border-top: 1px solid var(--rule);
    align-items: baseline;
  }
  .work-list .work-item:first-child { border-top: none; padding-top: 0; }
  .work-item .text h3 {
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.018em;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .work-item .text h3 a { color: var(--ink); border: none; }
  .work-item .text h3 a:hover { color: var(--link-h); }
  .work-item .meta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.02em;
    margin-bottom: 14px;
  }
  .work-item .meta .sep { color: var(--mute-2); margin: 0 6px; }
  .work-item .text p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 56ch;
    margin-bottom: 14px;
  }
  .work-item .text p strong { color: var(--ink); font-weight: 500; }
  .work-item .read {
    font-size: 14px;
    color: var(--link);
    border-bottom: 1px solid var(--mute-2);
    padding-bottom: 1px;
    display: inline-block;
  }
  .work-item .read:hover { color: var(--link-h); border-bottom-color: var(--link-h); }
  .work-item .read .ar { display: inline-block; transition: transform 0.2s var(--ease); margin-left: 6px; vertical-align: -0.18em; }
  .work-item .read .ar svg { width: 1.05em; height: 1.05em; display: block; stroke-width: 1.4; }
  .work-item .read:hover .ar { transform: translateX(3px); }

  .work-item .figure {
    text-align: right;
    align-self: start;
    padding-top: 6px;
  }
  .work-item .figure .v {
    font-size: 42px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .work-item .figure .v sup {
    font-size: 0.42em;
    color: var(--link-h);
    margin-left: 2px;
    vertical-align: super;
    top: -0.2em;
    position: relative;
  }
  .work-item .figure .k {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
    margin-top: 8px;
  }

  .work-more {
    margin-top: 48px;
    padding-top: 30px;
    border-top: 1px solid var(--rule);
    font-size: 14px;
    color: var(--mute);
  }
  .work-more a { color: var(--link); border: none; }
  .work-more a:hover { color: var(--link-h); }

  /* writing */
  .writing-list { display: flex; flex-direction: column; }
  .writing-item {
    padding: 26px 0;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 32px;
    align-items: baseline;
  }
  .writing-list .writing-item:first-child { border-top: none; padding-top: 0; }
  .writing-item h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .writing-item h3 a { color: var(--ink); border: none; }
  .writing-item h3 a:hover { color: var(--link-h); }
  .writing-item .kicker {
    font-size: 14px;
    color: var(--mute);
    line-height: 1.5;
    max-width: 64ch;
  }
  .writing-item .stamp {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
    text-align: right;
    align-self: start;
    padding-top: 4px;
  }
  .writing-item .stamp .kind { color: var(--mute-2); }

  /* logos - quiet evidence row */
  .logos { border-top: 1px solid var(--rule); }
  .logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    padding: 56px var(--x);
    max-width: 980px;
    margin: 0 auto;
  }
  .logo-row a {
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }
  .logo-row a:hover { border: none; }
  .logo-row img {
    height: 19px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.42;
    transition: opacity 0.25s var(--ease);
  }
  .logo-row a:hover img { opacity: 0.85; }
  .logo-row .jll { height: 22px; }

  /* speaking - single quiet line */
  .speaking {
    padding: 56px 0;
    border-top: 1px solid var(--rule);
  }
  .speaking-notice {
    font-size: 16px;
    color: var(--ink-2);
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    line-height: 1.5;
  }
  .speaking-notice .when {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* voice */
  .voice-block {
    padding: 110px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .voice-block blockquote {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.32;
    letter-spacing: -0.018em;
    color: var(--ink);
    font-weight: 400;
    max-width: 36ch;
    margin-bottom: 28px;
  }
  .voice-block .who {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--mute);
  }
  .voice-block .who strong { color: var(--ink); font-weight: 500; }

  /* contact */
  .contact { padding: 96px 0 80px; }
  .contact h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    line-height: 1.28;
    letter-spacing: -0.022em;
    color: var(--ink);
    font-weight: 400;
    margin-bottom: 1.2em;
    max-width: 24ch;
  }
  .contact p {
    font-size: 17.5px;
    line-height: 1.6;
    color: var(--ink-2);
    max-width: 56ch;
    margin-bottom: 1em;
  }
  .contact .direct {
    margin-top: 28px;
    font-size: 15px;
    color: var(--mute);
  }
  .contact .direct a {
    color: var(--ink);
    border-bottom: 1px solid var(--mute-2);
  }
  .contact .direct a:hover { color: var(--link-h); border-bottom-color: var(--link-h); }

  footer {
    padding: 32px var(--x);
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 13px;
    color: var(--mute);
  }
  footer a { color: var(--mute); border: none; }
  footer a:hover { color: var(--link-h); }
  footer .links { display: flex; gap: 24px; flex-wrap: wrap; }

  .preview-tag {
    position: fixed;
    bottom: 14px; right: 14px;
    z-index: 100;
    padding: 6px 10px;
    background: rgba(14, 15, 17, 0.92);
    border: 1px solid var(--rule);
    color: var(--mute);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    pointer-events: none;
  }
  .preview-tag span { color: var(--ink); margin-right: 5px; }

  @media (max-width: 720px) {
    :root { --x: 22px; }
    .top { padding: 18px var(--x); }
    .top nav { gap: 18px; font-size: 12px; }
    .hero { padding: 56px 0 80px; }
    .hero-wrap { grid-template-columns: 1fr; gap: 32px; }
    .hero-portrait { order: -1; width: 120px; }
    .hero-portrait img { width: 120px; height: 150px; }
    .hero .lede { max-width: 100%; }
    .logo-row { gap: 28px; padding: 36px 0; }
    .logo-row img { height: 16px; }
    .speaking-notice { font-size: 15px; gap: 12px; }
    .work-item { grid-template-columns: 1fr; gap: 18px; }
    .work-item .figure { text-align: left; padding-top: 0; }
    .work-item .figure .v { font-size: 32px; }
    .writing-item { grid-template-columns: 1fr; gap: 6px; }
    .writing-item .stamp { text-align: left; padding-top: 0; }
    footer { flex-direction: column; align-items: flex-start; }
  }

  /* ==========================================================================
     v2 extensions - article, index, landing patterns
     ========================================================================== */

  /* article (long-form: takes, notes, case studies, about) */
  .article {
    padding: 88px 0 110px;
  }
  .article-header {
    margin-bottom: 56px;
  }
  .article-kicker {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    flex-wrap: wrap;
  }
  .article-kicker .kind {
    color: var(--link-h);
  }
  .article-kicker .sep {
    color: var(--mute-2);
  }
  .article h1.article-title {
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 24ch;
  }
  .article-deck {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    line-height: 1.45;
    color: var(--ink-2);
    font-weight: 300;
    max-width: 38ch;
    letter-spacing: -0.005em;
  }
  .article-byline {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--mute);
    flex-wrap: wrap;
  }
  .article-byline img {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
    filter: contrast(1.04) saturate(0.92);
    flex-shrink: 0;
  }
  .article-byline .name { color: var(--ink); font-weight: 500; }
  .article-byline .role a { color: var(--link); border-bottom: none; }
  .article-byline .role a:hover { color: var(--link-h); }
  .article-byline .date {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  /* article body - prose */
  .article-body {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-2);
    max-width: 60ch;
  }
  .article-body p,
  .article-body ul,
  .article-body ol,
  .article-body blockquote,
  .article-body figure,
  .article-body pre {
    margin-bottom: 1.4em;
  }
  .article-body p strong { color: var(--ink); font-weight: 500; }
  .article-body em { font-style: italic; color: var(--ink-2); }
  .article-body h2 {
    font-size: clamp(1.4rem, 2.4vw, 1.7rem);
    line-height: 1.2;
    letter-spacing: -0.018em;
    color: var(--ink);
    font-weight: 500;
    margin-top: 2.2em;
    margin-bottom: 0.6em;
  }
  .article-body h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    color: var(--ink);
    font-weight: 500;
    margin-top: 1.8em;
    margin-bottom: 0.4em;
    letter-spacing: -0.01em;
  }
  .article-body ul,
  .article-body ol {
    padding-left: 1.4em;
  }
  .article-body li {
    margin-bottom: 0.5em;
  }
  .article-body blockquote {
    padding-left: 22px;
    border-left: 2px solid var(--link-h);
    color: var(--ink);
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.5;
  }
  .article-body code {
    font-family: var(--mono);
    font-size: 0.92em;
    background: var(--bg-1);
    padding: 1px 5px;
    border: 1px solid var(--rule);
  }
  .article-body pre {
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.55;
    background: var(--bg-1);
    border: 1px solid var(--rule);
    padding: 18px 22px;
    overflow-x: auto;
    color: var(--ink-2);
  }
  .article-body pre code {
    background: none; padding: 0; border: none;
  }
  .article-body figure { margin: 1.8em 0; }
  .article-body figure img { width: 100%; height: auto; border: 1px solid var(--rule); }
  .article-body figcaption {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
    margin-top: 10px;
    letter-spacing: 0.04em;
  }
  .article-body hr {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 2.6em 0;
  }
  .article-body a {
    color: var(--link);
    border-bottom: 1px solid var(--mute-2);
  }
  .article-body a:hover { color: var(--link-h); border-bottom-color: var(--link-h); }

  /* tables */
  .article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.8em 0;
    font-size: 0.95em;
  }
  .article-body th, .article-body td {
    padding: 0.65em 0.9em;
    text-align: left;
    border-bottom: 1px solid var(--rule);
    vertical-align: top;
  }
  .article-body th {
    font-weight: 600;
    color: var(--ink-2);
    border-bottom: 1px solid var(--mute-2);
    font-size: 0.82em;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* small caption shown above a code block */
  .article-body .code-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.04em;
    margin: 1.6em 0 -0.6em 0;
  }

  /* defensive: any stray inline SVG in body shouldn't blow up to default size */
  .article-body svg {
    max-width: 1.2em;
    max-height: 1.2em;
    vertical-align: -0.18em;
  }

  /* article callouts (preserved from v1 widgets: callout-danger / warning / info / success) */
  .article-body .callout {
    border: 1px solid var(--rule);
    border-left: 3px solid var(--mute);
    background: var(--bg-1);
    padding: 1.4em 1.6em;
    margin: 2em 0;
    border-radius: 4px;
  }
  .article-body .callout > *:first-child { margin-top: 0; }
  .article-body .callout > *:last-child { margin-bottom: 0; }
  .article-body .callout h3 {
    font-size: 0.95em;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-top: 0;
    margin-bottom: 0.5em;
  }
  .article-body .callout-danger { border-left-color: #c25b5b; }
  .article-body .callout-warning { border-left-color: #d4b463; }
  .article-body .callout-info { border-left-color: #6b8caf; }
  .article-body .callout-success { border-left-color: #6b9c7e; }

  /* sprite grid (Mario field guide pattern) */
  .article-body .callout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em;
    margin: 1.4em 0;
  }
  @media (min-width: 720px) {
    .article-body .callout-grid { grid-template-columns: repeat(3, 1fr); }
  }
  .article-body .sprite-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4em;
    padding: 0.9em 0.5em;
    border: 1px solid var(--rule);
    border-radius: 4px;
    background: var(--bg);
  }
  .article-body .sprite-card img {
    width: 44px;
    height: 44px;
    border: none;
    object-fit: contain;
  }
  .article-body .sprite-card > span:nth-of-type(1) {
    font-weight: 600;
    font-size: 0.88em;
    color: var(--ink);
  }
  .article-body .sprite-card > span:nth-of-type(2) {
    font-size: 0.78em;
    color: var(--mute);
    line-height: 1.4;
  }

  /* callout footer (e.g. bowser line at the bottom of a callout) */
  .article-body .callout-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin-top: 1.4em;
    padding-top: 1.2em;
    border-top: 1px solid var(--rule);
  }
  .article-body .callout-foot img {
    width: 56px;
    height: 56px;
    border: none;
    object-fit: contain;
  }
  .article-body .callout-foot p { margin: 0; font-size: 0.85em; color: var(--mute); }
  .article-body .callout-foot span { font-weight: 600; color: var(--ink-2); display: block; }

  /* article footer */
  .article-foot {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    font-size: 14px;
  }
  .article-foot .back {
    color: var(--mute);
  }
  .article-foot .next {
    text-align: right;
    color: var(--ink);
  }
  .article-foot .next a, .article-foot .back a { color: inherit; }

  /* index pages (case-studies, takes, notes, etc.) */
  .index-page {
    padding: 88px 0 110px;
  }
  .index-header {
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
  }
  .index-header h1 {
    font-size: clamp(2rem, 4.4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 18px;
    max-width: 22ch;
  }
  .index-header p {
    font-size: 17.5px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 56ch;
  }
  .index-header .count {
    margin-top: 18px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* index list - used for takes, notes lists */
  .index-list { display: flex; flex-direction: column; }
  .index-item {
    padding: 26px 0;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr 110px;
    gap: 32px;
    align-items: baseline;
    transition: background 0.2s var(--ease);
  }
  .index-list .index-item:first-child { border-top: none; padding-top: 0; }
  .index-item h2 {
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    font-weight: 500;
  }
  .index-item h2 a { color: var(--ink); border: none; }
  .index-item h2 a:hover { color: var(--link-h); }
  .index-item .kicker {
    font-size: 14px;
    color: var(--mute);
    line-height: 1.5;
    max-width: 64ch;
  }
  .index-item .stamp {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--mute);
    text-align: right;
    align-self: start;
    padding-top: 4px;
    line-height: 1.7;
  }
  .index-item .stamp .kind { color: var(--mute-2); }
  .index-item .stamp .flag {
    color: var(--link-h);
    display: block;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* landing pages (services /seo/, /pe/, /vc/) */
  .landing {
    padding: 88px 0 110px;
  }
  .landing-hero {
    margin-bottom: 88px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--rule);
  }
  .landing-hero .kicker {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--link-h);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .landing-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.028em;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 32px;
    max-width: 22ch;
  }
  .landing-hero .deck {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-2);
    max-width: 56ch;
  }
  .landing-hero .deck strong { color: var(--ink); font-weight: 500; }
  .landing-cta {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--ink);
    border-bottom: 1px solid var(--link-h);
    padding-bottom: 2px;
  }
  .landing-cta:hover { color: var(--link-h); }
  .landing-cta svg { width: 1em; height: 1em; vertical-align: -0.18em; transition: transform 0.2s var(--ease); }
  .landing-cta:hover svg { transform: translateX(3px); }

  /* heroicon arrow utility (used inline for read-more affordances) */
  .hi-arrow { width: 1em; height: 1em; vertical-align: -0.18em; display: inline-block; }
  .hi-arrow svg { width: 100%; height: 100%; stroke-width: 1.4; stroke: currentColor; fill: none; display: block; }

  /* mobile overrides for new patterns */
  @media (max-width: 720px) {
    .article { padding: 56px 0 80px; }
    .article-foot { grid-template-columns: 1fr; gap: 16px; }
    .article-foot .next { text-align: left; }
    .index-page { padding: 56px 0 80px; }
    .index-item { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
    .index-item .stamp { text-align: left; padding-top: 0; }
    .landing { padding: 56px 0 80px; }
    .landing-hero { margin-bottom: 56px; padding-bottom: 32px; }
  }
