/* jigarpatel.xyz — static design system (faithful port of the Tailwind/Next theme) */

/* ---------- fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/fraunces-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/fraunces-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/fraunces-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2');
}

/* ---------- tokens ---------- */
:root {
  --bg: #fafaf9;
  --bg-glow: rgba(13, 148, 136, 0.07);
  --ink: #18181b;
  --ink-2: #27272a;
  --ink-3: #3f3f46;
  --dim: #52525b;
  --dim-2: #71717a;
  --dim-3: #a1a1aa;
  --line: #e4e4e7;
  --line-2: #d4d4d8;
  --panel: #ffffff;
  --panel-2: #fafafa;
  --accent: #0f766e;
  --accent-hover: #115e59;
  --accent-soft: rgba(13, 148, 136, 0.35);
  --sel-bg: #0f766e;
  --sel-ink: #fafafa;
  --code-bg: #f4f4f5;
  --pre-bg: #262626;
  color-scheme: light;
}
.dark {
  --bg: #09090b;
  --bg-glow: rgba(94, 234, 212, 0.08);
  --ink: #f4f4f5;
  --ink-2: #e4e4e7;
  --ink-3: #d4d4d8;
  --dim: #a1a1aa;
  --dim-2: #71717a;
  --dim-3: #52525b;
  --line: #27272a;
  --line-2: #3f3f46;
  --panel: #18181b;
  --panel-2: #09090b;
  --accent: #5eead4;
  --accent-hover: #99f6e4;
  --accent-soft: rgba(94, 234, 212, 0.35);
  --sel-bg: #5eead4;
  --sel-ink: #18181b;
  --code-bg: #27272a;
  color-scheme: dark;
}

/* ---------- base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  background-image: radial-gradient(circle at top right, var(--bg-glow), transparent 24rem);
  background-repeat: no-repeat;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
::selection {
  background: var(--sel-bg);
  color: var(--sel-ink);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
.container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.font-serif {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
}
.font-mono {
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-link {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  text-transform: lowercase;
  color: var(--dim);
  transition: background-color 0.2s, color 0.2s;
}
.nav-link:hover {
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  color: var(--ink);
}
.nav-link-active {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  color: var(--ink);
  font-weight: 500;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--line-2) 80%, transparent);
  background: color-mix(in srgb, var(--panel) 70%, transparent);
  color: var(--ink-2);
  box-shadow: 0 1px 2px rgba(9, 9, 11, 0.03);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.icon-btn:hover {
  border-color: var(--line-2);
  color: var(--ink);
}
.icon-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.mobile-toggle {
  display: inline-flex;
}
@media (min-width: 640px) {
  .mobile-toggle {
    display: none;
  }
}
.dark .icon-sun {
  display: none;
}
.dark .icon-moon {
  display: inline;
}

/* mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}
.mobile-drawer.open {
  display: block;
}
.mobile-drawer .backdrop {
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--ink) 50%, transparent);
  backdrop-filter: blur(2px);
}
.mobile-drawer nav {
  position: absolute;
  right: 0;
  top: 0;
  height: 100dvh;
  width: min(18rem, calc(100vw - 1rem));
  border-left: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 95%, transparent);
  padding: 4rem 1.25rem 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}
.mobile-drawer a {
  display: block;
  border-radius: 9999px;
  padding: 0.75rem;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  text-transform: lowercase;
  color: var(--dim);
}
.mobile-drawer a:hover {
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  color: var(--ink);
}
.mobile-drawer a.active {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  color: var(--ink);
  font-weight: 500;
}

/* ---------- layout ---------- */
main {
  flex: 1;
  padding: 1.5rem 0 2rem;
}
@media (min-width: 640px) {
  main {
    padding: 2rem 0;
  }
}
.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.site-footer {
  margin-top: 4rem;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--dim);
}
.site-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .site-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.site-footer .socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer .socials a {
  color: var(--dim-2);
  transition: color 0.15s;
}
.site-footer .socials a:hover {
  color: var(--ink);
}
.site-footer .socials svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---------- buttons ---------- */
.surface-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  background: var(--ink);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bg);
  transition: opacity 0.15s;
}
.surface-link:hover {
  opacity: 0.9;
}
.dark .surface-link {
  background: var(--ink);
  color: var(--bg);
}
.surface-link-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-2);
  transition: border-color 0.15s, color 0.15s;
}
.surface-link-secondary:hover {
  border-color: var(--line-2);
  color: var(--ink);
}

/* ---------- page titles & labels ---------- */
.page-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
@media (min-width: 640px) {
  .page-title {
    font-size: 3rem;
  }
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim);
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.section-head h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-weight: 600;
}
.section-head .more {
  font-size: 0.875rem;
  color: var(--dim-2);
  transition: color 0.15s;
}
.section-head .more:hover {
  color: var(--ink);
}

/* ---------- home ---------- */
.home-hero {
  padding-bottom: 3rem;
}
.home-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
@media (min-width: 640px) {
  .home-hero h1 {
    font-size: 3.75rem;
  }
}
.home-hero .sub {
  max-width: 42rem;
  font-size: 0.875rem;
  color: var(--dim);
  margin-top: 0.25rem;
}
.home-hero .sub a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--ink-2);
}
.home-hero .sub a:hover {
  color: var(--ink);
}
.home-hero .socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: var(--dim);
  margin-top: 1rem;
}
.home-hero .socials a {
  transition: color 0.15s;
}
.home-hero .socials a:hover {
  color: var(--ink);
}
.home-hero .socials svg {
  width: 1.5rem;
  height: 1.5rem;
}
.rotate-role {
  display: inline-block;
  min-width: 1px;
  animation: rotateRole 2.8s infinite;
}
@keyframes rotateRole {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  25% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rotate-role {
    animation: none;
  }
}

.home-section {
  margin-top: 3.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.home-section .items {
  border-top: 0;
}
.home-about {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.home-about .about-body {
  max-width: 42rem;
  font-size: 0.875rem;
  color: var(--dim);
  margin-top: 0.75rem;
}
.rise {
  animation: rise 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .rise {
    animation: none;
  }
}

/* ---------- list items (home + blog) ---------- */
.item-list {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}
.item-list > li {
  border-bottom: 1px solid var(--line);
}
.item {
  padding: 1.5rem 0;
}
.item:first-child {
  padding-top: 1.25rem;
}
.item .meta {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--dim-2);
}
.item h3,
.item h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 0.5rem;
}
.item h3 a,
.item h2 a {
  transition: color 0.15s;
}
.item h3 a:hover,
.item h2 a:hover {
  color: var(--dim);
}
.item .summary {
  max-width: 48rem;
  font-size: 0.875rem;
  color: var(--dim);
  margin-top: 0.5rem;
}
.hoverline {
  border-left: 1px solid color-mix(in srgb, var(--line-2) 70%, transparent);
  padding-left: 1rem;
  transition: transform 0.2s, border-color 0.2s;
}
.hoverline:hover {
  transform: translateX(4px);
  border-color: var(--accent-soft);
}

/* ---------- tags ---------- */
.tag {
  display: inline-block;
  border-radius: 0.375rem;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  color: var(--dim);
  transition: background 0.15s, color 0.15s;
}
.tag:hover {
  background: color-mix(in srgb, var(--ink) 10%, transparent);
  color: var(--ink);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.tag-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* ---------- pagination ---------- */
.pagination {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--dim);
}
.pagination a {
  color: var(--ink-2);
  transition: color 0.15s;
}
.pagination a:hover {
  color: var(--ink);
}
.pagination .disabled {
  opacity: 0.5;
  cursor: default;
}

/* ---------- post ---------- */
.post {
  margin: 0 auto;
  max-width: 48rem;
  padding-bottom: 3rem;
}
.post-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
}
.post-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.25rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}
@media (min-width: 640px) {
  .post-header h1 {
    font-size: 3rem;
  }
}
.post-header .deck {
  max-width: 48rem;
  font-size: 1rem;
  color: var(--dim);
  margin-top: 0.75rem;
  line-height: 2;
}
@media (min-width: 640px) {
  .post-header .deck {
    font-size: 1.125rem;
  }
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--dim-2);
  margin-top: 1rem;
}
.post-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--dim);
  margin-top: 1rem;
}
.post-links a {
  color: var(--dim);
}
.post-links a:hover {
  color: var(--ink);
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}
.post-foot {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .post-foot {
    flex-direction: row;
    justify-content: space-between;
  }
}
.post-foot a {
  color: var(--ink-2);
  transition: color 0.15s;
}
.post-foot a:hover {
  color: var(--ink);
}

/* ---------- prose (typography plugin replica) ---------- */
.prose {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.9;
  padding-top: 2rem;
}
.prose > * + * {
  margin-top: 1.25em;
}
.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.prose h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2.5em;
}
.prose h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2em;
}
.prose h4 {
  font-size: 1.25rem;
  margin-top: 1.75em;
}
.prose p {
  color: var(--ink-2);
}
.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover {
  color: var(--accent-hover);
}
.prose strong {
  color: var(--ink);
  font-weight: 600;
}
.prose em {
  color: inherit;
}
.prose ul,
.prose ol {
  padding-left: 1.625rem;
  color: var(--ink-2);
}
.prose ul {
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 0.375rem;
}
.prose li::marker {
  color: var(--dim-2);
}
.prose blockquote {
  border-left: 4px solid var(--line-2);
  padding-left: 1rem;
  font-style: italic;
  color: var(--ink);
}
.prose code {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 0.875em;
  background: var(--code-bg);
  color: var(--dim);
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}
.prose code::before,
.prose code::after {
  content: '';
}
.prose pre {
  background: var(--pre-bg);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
.prose pre code {
  background: transparent;
  color: #e4e4e7;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.75;
  border-radius: 0;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 3em 0;
}
.prose img {
  border-radius: 0.75rem;
  margin: 2em 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 2em 0;
}
.prose th {
  text-align: left;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line-2);
  padding: 0.5rem 0.75rem;
}
.prose td {
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0.75rem;
  color: var(--ink-2);
}
.prose figure {
  margin: 2em 0;
}
.prose figcaption {
  font-size: 0.75rem;
  color: var(--dim-2);
  text-align: center;
  margin-top: 0.5rem;
}
.prose details {
  background: var(--code-bg);
  padding: 0.25rem;
  border-radius: 0.25rem;
}
.prose .highlight {
  background: var(--pre-bg);
}
/* pygments */
.highlight .k {
  color: #569cd6;
}
.highlight .s,
.highlight .s1,
.highlight .s2 {
  color: #ce9178;
}
.highlight .c,
.highlight .c1,
.highlight .cm {
  color: #6a9955;
  font-style: italic;
}
.highlight .n {
  color: #d4d4d4;
}
.highlight .o {
  color: #d4d4d4;
}
.highlight .p {
  color: #d4d4d4;
}
.highlight .nb {
  color: #9cdcfe;
}
.highlight .nf {
  color: #dcdcaa;
}
.highlight .nc {
  color: #4ec9b0;
}
.highlight .mi {
  color: #b5cea8;
}
.highlight .m {
  color: #b5cea8;
}
.highlight .kd {
  color: #569cd6;
}
.highlight .kn {
  color: #c586c0;
}
.highlight .kt {
  color: #4ec9b0;
}
.highlight .bp {
  color: #9cdcfe;
}
.highlight .nd {
  color: #e2c08d;
}
.highlight .nl {
  color: #e2c08d;
}
.highlight .nn {
  color: #4ec9b0;
}
.highlight .ow {
  color: #569cd6;
}
.highlight .vc {
  color: #9cdcfe;
}
.highlight .err {
  color: #f44747;
}

/* ---------- tags page ---------- */
.tags-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}
@media (min-width: 640px) {
  .tags-hero h1 {
    font-size: 3rem;
  }
}
.tags-hero p {
  font-size: 1rem;
  color: var(--dim);
  margin-top: 1rem;
  max-width: 48rem;
  line-height: 2;
}
@media (min-width: 640px) {
  .tags-hero p {
    font-size: 1.125rem;
  }
}

/* ---------- 404 ---------- */
.e404 {
  max-width: 42rem;
  padding: 3rem 0;
}
.e404 h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3rem;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.e404 p {
  color: var(--dim);
  margin-top: 1rem;
}

/* ---------- notes empty state ---------- */
.empty {
  padding: 3rem 0;
  color: var(--dim-2);
  font-size: 0.875rem;
}

/* ---------- cooking ---------- */
.cooking {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 22px;
}
.cooking-kicker {
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dim-2);
  margin-bottom: 22px;
}
.cooking-word {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 9vw, 5.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
}
.cooking-word .cursor {
  display: inline-block;
  width: 0.55ch;
  height: 0.9em;
  margin-left: 0.12em;
  background: var(--accent);
  vertical-align: -0.06em;
  animation: cooking-blink 1.15s steps(2, start) infinite;
}
@keyframes cooking-blink {
  to {
    visibility: hidden;
  }
}
.cooking-note {
  font-family: 'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.8rem;
  color: var(--dim);
  margin-top: 26px;
}
.cooking-note::before {
  content: '◈';
  color: var(--accent);
  margin-right: 10px;
}
