/*
Theme Name: Tiny Moments Kept
Theme URI: https://tinymomentskept.com
Author: Midori Egawa
Description: A Japanese-minimalist memory keeping blog for parents. Clean, warm, intentional.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tinymomentskept
Tags: blog, custom-colors, custom-logo, custom-menu, featured-images
*/

/* ============================================================
   Variables
   ============================================================ */
:root {
  /* Palette */
  --cream:        #F5F2EC;
  --paper:        #FBFAF6;
  --espresso:     #2A2318;
  --espresso-ln:  #4A4030;
  --muted:        #7A7060;
  --warm-brown:   #BE744A;
  --tan:          #B0A48A;
  --border:       #E2DDD4;
  --placeholder:  #6A6050;
  --accent:       var(--warm-brown);

  /* Illustration */
  --jar-gold-1:   #F6C76A;
  --jar-gold-2:   #EDB24E;
  --jar-star:     #E0A23C;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  /* Layout */
  --header-height: 72px;
  --gutter:        2.5rem;
  --outer-maxw:    1200px;
  --measure:       680px;
  --section-v:     3rem;
  --card-pad:      1.5rem;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p { margin: 0; }
::selection { background: color-mix(in oklab, var(--accent) 22%, transparent); }

/* ============================================================
   Typography helpers
   ============================================================ */
.label {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin: 0;
  margin-bottom: 1.1rem;
}
.label--brown { color: var(--accent); }

/* Large display-font paragraph — reuse wherever you need an editorial intro line */
.text-display {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.55rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

/* Muted body paragraph — secondary/supporting copy */
.text-muted {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
}

h1 em, h2 em, h3 em { font-style: italic; color: var(--accent); }

/* ============================================================
   Page layout
   ============================================================ */
.main > * {
  max-width: var(--outer-maxw);
  margin-left: auto;
  margin-right: auto;
}
.main > .philosophy,
.main > .concepts,
.main > .optin { max-width: none; }

.main > section,
.main > article {
  padding: var(--section-v) var(--gutter);
}

.inner {
  max-width: var(--outer-maxw);
  margin: 0 auto;
}

/* ============================================================
   Buttons & links
   ============================================================ */
.wp-block-button__link {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 !important;
  padding: 0.85rem 1.6rem;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.wp-block-button.is-style-fill .wp-block-button__link {
  background: var(--espresso);
  color: var(--cream);
  border: 1px solid transparent;
}
.wp-block-button.is-style-fill .wp-block-button__link:hover { background: var(--accent); }

.tlink {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  transition: color .25s ease;
}
.tlink:hover { color: var(--espresso); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background: color-mix(in oklab, var(--cream) 86%, transparent);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
}
.site-header__inner {
  max-width: var(--outer-maxw);
  margin: 0 auto;
  padding: 1.75rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none !important;
  line-height: 1;
  color: inherit;
}
.brand-mark { display: inline-flex; align-items: center; flex-shrink: 0; color: var(--espresso); }
.brand-mark svg,
.brand-logo { display: block; width: 25px; height: auto; }
.brand-text { display: flex; flex-direction: column; justify-content: center; gap: 0.15rem; }
.brand .name {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: var(--espresso);
  white-space: nowrap;
  line-height: 1.2;
}
.brand .jp {
  display: block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  color: var(--tan);
  line-height: 1;
}

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2rem; }
.site-nav li { margin: 0; }
.site-nav a {
  white-space: nowrap;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s ease;
}
.site-nav a:hover { color: var(--accent); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-columns { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.hero-text { flex: 0 0 55%; min-width: 280px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2.4rem; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}
.eyebrow-kanji { font-style: normal; letter-spacing: 0.18em; }
.hero h1 {
  font-family: var(--font-display) !important;
  font-weight: 300 !important;
  font-size: clamp(2.6rem, 5.2vw, 4rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.015em !important;
}
.hero-sub {
  max-width: 30rem;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-art { display: flex; align-items: center; justify-content: center; }
.jar-wrap { display: flex; align-items: center; justify-content: center; width: 100%; padding: 2.5rem 1rem; }
.jar-svg { width: 100%; max-width: 170px; height: auto; color: var(--espresso); display: block; }

/* ============================================================
   Articles head row (front page)
   ============================================================ */
.articles-head { display: flex; align-items: baseline; justify-content: space-between; padding: var(--gutter); }

/* ============================================================
   Featured article card (60:40)
   ============================================================ */
.featured-section { padding: 0 var(--gutter); }
.featured-card {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-body {
  flex-basis: 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--card-pad);
}
.featured-art {
  flex-basis: 40%;
  max-width: 40%;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.featured-art::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; height: 80%; width: 1px;
  background: var(--border);
}
.featured-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}
.featured-image a { display: block; width: 100%; height: 100%; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   Shared card primitives
   ============================================================ */
.card-num { margin-bottom: 0.75rem; line-height: 1; }

.post-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-wrap: balance;
}
.post-title a { color: var(--espresso); text-decoration: none; transition: color .25s ease; }
.post-title a:hover,
.article-card:hover .post-title a { color: var(--accent); }

.featured-body .post-title { font-size: 2rem; line-height: 1.15; letter-spacing: -0.015em; margin: 0.875rem 0 1rem; }
.article-card .post-title { font-size: 1.4rem; line-height: 1.28; letter-spacing: -0.01em; margin: 0.625rem 0 0.7rem; }

.post-terms { font-size: 0.625rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: var(--accent); }
.post-terms a { color: var(--accent); text-decoration: none; }

.excerpt p { margin: 0; }
.meta { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; }
.date { font-size: 0.625rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tan); }

/* ============================================================
   Article grid (2×2)
   ============================================================ */
.article-grid { padding: 0 var(--gutter) var(--section-v); }
.grid-item--first { display: none; }
.grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin: 0; padding: 0; list-style: none;
}
.grid-list::after { content: ''; background: var(--cream); display: block; }
.grid-item { list-style: none; margin: 0; padding: 0; background: transparent; }
.article-card { background: var(--cream); transition: background .3s ease; height: 100%; padding: var(--card-pad); }
.article-card:hover { background: var(--paper); }

/* ============================================================
   Our approach + Japanese concepts (shared label margin)
   ============================================================ */

.philosophy {
  background: color-mix(in oklab, var(--accent) 7%, var(--cream));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  max-width: 24ch;
}
.philosophy-caption {
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-top: 1.4rem;
}

.concepts { border-bottom: 1px solid var(--border); }
.concepts-cols { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.concepts-cols .concept { flex: 1; min-width: 180px; }
.concept { border-top: 1px solid var(--border); padding-top: var(--gutter); }
.concept .kanji { font-family: var(--font-display); font-weight: 300; font-size: 1.9rem; color: var(--accent); line-height: 1; }
.concept-romaji { font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); margin: 0.4rem 0; }
.concept-desc { font-size: 0.9rem; line-height: 1.6; font-weight: 300; color: var(--muted); }

/* ============================================================
   Email opt-in
   ============================================================ */
.optin { background: var(--espresso); color: var(--cream); }
.optin-inner { display: flex; gap: 3.5rem; flex-wrap: wrap; align-items: flex-start; }
.optin h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}
.optin h2 em { font-style: italic; color: var(--tan); }
.optin-text { flex: 1; min-width: 280px; }
.optin-form { flex: 1; min-width: 280px; }
.email-form { display: flex; flex-direction: column; gap: 0.8rem; max-width: 22rem; margin-left: auto; }
.email-input {
  background: transparent;
  border: 1px solid var(--espresso-ln);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color .25s ease;
  width: 100%;
}
.email-input::placeholder { color: var(--placeholder); }
.email-input:focus { border-color: var(--accent); }
.email-btn {
  background: var(--accent);
  border: none;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  cursor: pointer;
  transition: opacity .25s ease;
  width: 100%;
}
.email-btn:hover { opacity: 0.9; }
.email-note { font-size: 0.6875rem; color: var(--placeholder); letter-spacing: 0.04em; margin: 0.1rem 0 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--espresso); color: var(--cream); border-top: 1px solid var(--espresso-ln); }
.site-footer__inner { max-width: var(--outer-maxw); margin: 0 auto; padding: 4rem var(--gutter) 2.5rem; }
.foot-site-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); display: block; margin-bottom: 0.5rem; }
.foot-cols { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; flex-wrap: wrap; margin-bottom: 3rem; }
.foot-col--brand { flex: 2; }
.foot-tagline { color: var(--tan); font-size: 0.9rem; }
.foot-col .h { font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: block; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.foot-col li { margin: 0; }
.foot-col a { color: var(--tan); text-decoration: none; font-size: 0.9rem; transition: color .2s ease; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.foot-bottom p, .foot-bottom a { font-size: 0.6875rem; color: var(--tan); text-decoration: none; letter-spacing: 0.04em; }
.foot-bottom a:hover { color: var(--cream); }

/* ============================================================
   Page heads — shared base
   ============================================================ */
.post-head { border-bottom: 1px solid var(--border); }

.post-head h1,
.archive-head h1,
.404 h1 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* Italic display text in muted — shared base */
.standfirst,
.post-cap {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-weight: 300;
}

/* ============================================================
   Single post — header
   ============================================================ */
.post-head { text-align: center; }
.post-head .inner { max-width: 780px; }
.post-cat { margin-bottom: 1.35rem; }
.post-head h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.12; text-wrap: balance; }

.byline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--tan);
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 1.7rem;
}
.byline .sep { opacity: 0.6; }

/* Single post — lede image */
.post-lede {
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--accent) 6%, var(--cream));
}
.post-lede .inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.post-lede img { max-width: 680px; width: 100%; height: auto; }
.post-cap { font-size: 1rem; text-align: center; }

/* Single post — prose */
.post-article { border-bottom: 1px solid var(--border); }
.prose { max-width: var(--measure); margin: 0 auto; }
.prose p { font-size: 1.0625rem; line-height: 1.85; color: var(--espresso); margin-bottom: 1.4rem; font-weight: 300; }
.prose p:first-of-type { font-size: 1.2rem; line-height: 1.7; }
.prose h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; letter-spacing: -0.01em; margin: 3rem 0 1.1rem; }
.prose a { color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose blockquote { margin: 2.5rem 0; padding-left: 1.6rem; border-left: 2px solid var(--accent); }
.prose blockquote p { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.5; margin-bottom: 0; }

/* Force-normalize font on lists/tables — imported articles (RankSpot) bring inline font styles */
.prose ul, .prose ol, .prose li,
.prose table, .prose th, .prose td {
  font-family: var(--font-body) !important;
  font-size: 1.0625rem !important;
  line-height: 1.85 !important;
  color: var(--espresso) !important;
  font-weight: 300 !important;
}
.prose ul, .prose ol { margin: 0 0 1.4rem; padding-left: 1.4rem; }
.prose li { margin-bottom: 0.5rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.4rem; }
.prose th, .prose td { padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--border); text-align: left; }
.prose th { font-weight: 500; }

/* Tags */
.tags-wrap { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--border); }
.tags { display: flex; flex-wrap: wrap; gap: 1px; background: var(--border); border: 1px solid var(--border); width: fit-content; }
.tags a {
  background: var(--cream);
  padding: 0.55rem 1.05rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: none;
  transition: color .2s ease, background .2s ease;
}
.tags a:hover { color: var(--accent); background: var(--paper); }
.tags a.is-active { color: var(--espresso); background: var(--paper); }

/* Author box */
.authorbox { margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; gap: 1.25rem; align-items: flex-start; }
.ava {
  width: 56px; height: 56px; flex-shrink: 0;
  background: color-mix(in oklab, var(--accent) 12%, var(--cream));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--accent);
}
.who b { display: block; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--espresso); }
.who p { margin: 0.35rem 0 0; font-size: 0.875rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* Keep reading */
.keepreading { border-top: 1px solid var(--border); }
.keepreading .grid-list { grid-template-columns: 1fr 1fr; }

/* ============================================================
   Archive — page head
   ============================================================ */
.archive-head h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.1; max-width: 16ch; }
.standfirst { font-size: 1.15rem; line-height: 1.65; max-width: 38rem; margin-top: 1.5rem; }

/* ============================================================
   Archive — category filter
   ============================================================ */
.cat-filter { padding: 0 var(--gutter); }

/* ============================================================
   Pagination
   ============================================================ */
.pagination { padding: var(--section-v) 0; }
.pagination .navigation { display: flex; justify-content: center; }
.pagination .nav-links { display: flex; align-items: center; gap: 0.35rem; }
.pagination .page-numbers {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.pagination .page-numbers:hover { color: var(--accent); }
.pagination .page-numbers.current { color: var(--espresso); border-color: var(--border); }
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  min-width: unset;
  padding: 0 0.9rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover { color: var(--espresso); }

/* ============================================================
   404
   ============================================================ */
.404 { text-align: center; }
.404 h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1.22; text-wrap: balance; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  :root { --gutter: 1.5rem; }
  .hero-columns { flex-direction: column; }
  .hero-art { order: -1; min-height: 200px; }
  .hero-text { flex-basis: auto; }
  .jar-wrap { padding: 0; }
  .featured-section { display: none; }
  .grid-item--first { display: list-item; }
  .grid-item:nth-child(5) { display: none; }
  .grid-list { grid-template-columns: 1fr; }
  .keepreading .grid-list { grid-template-columns: 1fr; }
  .email-form { margin-left: 0; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px; flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--espresso);
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 620px) {
  .brand .jp { display: none; }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem var(--gutter);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 1.5rem; }
  .site-nav a { font-size: 0.75rem; }
  .site-header { position: sticky; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ============================================================
   About — profile layout
   ============================================================ */
.about-profile { border-bottom: 1px solid var(--border); }
.about-inner { display: flex; gap: 3.5rem; align-items: flex-start; flex-wrap: wrap; }
.about-photo { flex: 0 0 320px; max-width: 320px; }
.about-photo img { width: 100%; height: auto; display: block; }
.about-text { flex: 1; min-width: 260px; }

/* ============================================================
   Start Here — steps
   ============================================================ */
.steps { display: flex; flex-direction: column; margin: 2.5rem 0; border-top: 1px solid var(--border); }
.step { display: flex; gap: 1.5rem; align-items: flex-start; padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.step-n {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--tan);
  flex-shrink: 0;
  padding-top: 0.35rem;
  min-width: 2rem;
}
.step-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.step-body p { margin-bottom: 0; }

/* ============================================================
   Start Here — signoff
   ============================================================ */
.signoff { display: flex; align-items: center; gap: 1.25rem; }
.step:last-child { border-bottom: none; }
.signoff-sig { font-family: var(--font-display); font-style: italic; font-size: 2.75rem; font-weight: 300; color: var(--accent); line-height: 1; }
.signoff-who b { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--espresso); }
.signoff-who span { font-size: 0.8rem; color: var(--muted); }