/*
Theme Name: The Tiny Human Toolkit
Theme URI: https://thetinyhumantoolkit.com
Author: Michael & Victory
Author URI: https://thetinyhumantoolkit.com
Description: Custom WordPress theme for The Tiny Human Toolkit blog. Matches the main site design system exactly — Playfair Display headings, DM Sans body, TTHT color palette.
Version: 1.0.0
License: Private — All Rights Reserved
Text Domain: ttht

DESIGN TOKENS (matches main site index.html exactly):
  --mid:  #26215C  (deep violet — primary brand)
  --mid2: #1a1640  (darker violet — headers/footer bg)
  --vi:   #7F77DD  (violet accent)
  --vil:  #a39de8  (light violet)
  --lav:  #EEEDFE  (lavender tint — section bg)
  --bl:   #F4C0D1  (blush pink)
  --bld:  #e8a0b8  (bold blush)
  --cr:   #F1EFE8  (cream — body bg)
  --ink:  #2C2C2A  (dark body text)
  --mu:   #6B6880  (muted text)
  --wh:   #ffffff

FONTS: Playfair Display (700, 600, 400 italic) + DM Sans (300, 400, 500, 600)
Loaded in functions.php via wp_enqueue_style (Google Fonts).
*/

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mid: #26215C;
  --mid2: #1a1640;
  --vi: #7F77DD;
  --vil: #a39de8;
  --lav: #EEEDFE;
  --bl: #F4C0D1;
  --bld: #e8a0b8;
  --cr: #F1EFE8;
  --ink: #2C2C2A;
  --mu: #6B6880;
  --wh: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--cr);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
  cursor: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vi); text-decoration: none; transition: color .2s; cursor: none; }
a:hover { color: var(--mid); }
ul, ol { padding-left: 1.5rem; }

/* ═══════════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════════ */
#cur {
  position: fixed; width: 11px; height: 11px; border-radius: 50%;
  background: var(--vi); pointer-events: none; z-index: 10000;
  transform: translate(-50%, -50%); opacity: 0;
  transition: width .2s, height .2s, background .2s;
  box-shadow: 0 0 0 2px rgba(255,255,255,.75), 0 0 8px rgba(127,119,221,.4);
}
#cur-ring {
  position: fixed; width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(127,119,221,.7); pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); opacity: 0;
}
body:hover #cur, body:hover #cur-ring { opacity: 1; }
.cg #cur { width: 20px; height: 20px; background: var(--bld); }
.cg #cur-ring { width: 52px; height: 52px; border-color: rgba(232,160,184,.45); }

/* ═══════════════════════════════════════════════
   PROGRESS BAR
═══════════════════════════════════════════════ */
#prog-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--vi), var(--bld));
  z-index: 10001; width: 0%; pointer-events: none;
}

/* ═══════════════════════════════════════════════
   GRAIN TEXTURE
═══════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed; inset: -50%; width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .025; pointer-events: none; z-index: 9998;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-4%,-9%); }
  40% { transform: translate(6%,-20%); }
  60% { transform: translate(-12%,8%); }
  80% { transform: translate(0,12%); }
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: .75rem 2rem;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.site-nav.hide { transform: translateY(-120%); }
.nav-pill {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto;
  background: rgba(238,237,254,.92);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border-radius: 100px; padding: .5rem .6rem .5rem 1.5rem;
  box-shadow: 0 8px 40px rgba(38,33,92,.12);
  border: 1px solid rgba(127,119,221,.2);
}
.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo .custom-logo-link { display: flex; align-items: center; line-height: 0; }
.nav-logo .custom-logo { height: 34px !important; width: auto !important; }
.nav-wordmark {
  font-family: 'Playfair Display', serif; font-size: .92rem;
  font-weight: 700; color: var(--mid);
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a {
  font-size: .83rem; color: var(--mu); text-decoration: none;
  transition: color .2s; white-space: nowrap; cursor: none;
}
.nav-links a.current-menu-item,
.nav-links a.active-page { color: var(--mid); font-weight: 500; }
.nav-links a:hover { color: var(--mid); }
.nav-cta {
  background: var(--mid) !important; color: var(--wh) !important;
  padding: .46rem 1.25rem; border-radius: 100px;
  font-weight: 500; font-size: .82rem; cursor: none;
}
.nav-cta:hover { opacity: .88; color: var(--wh) !important; }
@media (max-width: 680px) { .nav-links li:not(:last-child) { display: none; } }

/* ═══════════════════════════════════════════════
   PAGE HEADER (blog archive + category headers)
═══════════════════════════════════════════════ */
.page-header {
  background: var(--mid2); padding: 8rem 2rem 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -150px; left: 50%;
  transform: translateX(-50%); width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(127,119,221,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .eyebrow {
  font-size: .68rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(244,192,209,.55);
  display: block; margin-bottom: .85rem; position: relative; z-index: 1;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700; color: var(--wh);
  letter-spacing: -.04em; line-height: 1.08;
  margin-bottom: 1rem; position: relative; z-index: 1;
}
.page-header p {
  font-size: .98rem; color: rgba(255,255,255,.42);
  line-height: 1.8; font-weight: 300;
  max-width: 520px; margin: 0 auto; position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════
   BLOG LAYOUT
═══════════════════════════════════════════════ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
@media (max-width: 960px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: -1; }
}

/* ═══════════════════════════════════════════════
   POST CARDS (archive / home)
═══════════════════════════════════════════════ */
.posts-list { display: flex; flex-direction: column; gap: 2rem; }

.post-card {
  background: var(--wh); border-radius: 24px;
  border: 1px solid rgba(127,119,221,.08);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none; display: block; color: var(--ink); cursor: none;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(38,33,92,.09); }

.post-card-img {
  width: 100%; aspect-ratio: 16 / 7; overflow: hidden; background: var(--lav);
}
.post-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.post-card-img.no-image {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: rgba(127,119,221,.3);
  font-style: italic; padding: 2rem;
  text-align: center; line-height: 1.3;
}

.post-card-body { padding: 1.75rem 2rem 2rem; }

.post-card-meta {
  display: flex; align-items: center; gap: .65rem;
  margin-bottom: .85rem; flex-wrap: wrap;
}
.post-cat-badge {
  font-size: .63rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--vi);
  background: var(--lav); padding: .22rem .75rem;
  border-radius: 100px; text-decoration: none; cursor: none;
}
.post-cat-badge:hover { background: rgba(127,119,221,.2); color: var(--mid); }
.post-date {
  font-size: .72rem; color: rgba(107,104,128,.5); letter-spacing: .03em;
}
.read-time { font-size: .72rem; color: rgba(107,104,128,.4); }

.post-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700; color: var(--mid);
  line-height: 1.25; margin-bottom: .65rem;
  letter-spacing: -.02em;
}
.post-card h2 a { color: inherit; text-decoration: none; cursor: none; }
.post-card h2 a:hover { color: var(--vi); }

.post-excerpt {
  font-size: .88rem; color: var(--mu);
  line-height: 1.75; font-weight: 300; margin-bottom: 1.25rem;
}

.read-more {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 600; color: var(--vi);
  text-decoration: none; cursor: none;
  transition: gap .2s;
}
.read-more:hover { gap: .65rem; color: var(--mid); }
.read-more svg {
  width: 14px; height: 14px; stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* ═══════════════════════════════════════════════
   FEATURED POST (first card, larger)
═══════════════════════════════════════════════ */
.post-card.is-featured .post-card-img { aspect-ratio: 16 / 8; }
.post-card.is-featured h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* ═══════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════ */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-top: 3rem; flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 .75rem;
  border-radius: 100px; font-size: .82rem; font-weight: 500;
  border: 1.5px solid rgba(127,119,221,.18); color: var(--mu);
  text-decoration: none; transition: all .2s; cursor: none;
}
.pagination a:hover { border-color: var(--vi); color: var(--vi); background: var(--lav); }
.pagination .current {
  background: var(--mid); color: var(--wh); border-color: var(--mid);
}
.pagination .dots { border: none; color: rgba(107,104,128,.4); }

/* ═══════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════ */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.75rem; }

.sidebar-widget {
  background: var(--wh); border-radius: 22px;
  border: 1px solid rgba(127,119,221,.08); padding: 1.75rem;
}
.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--mid);
  margin-bottom: 1.1rem; letter-spacing: -.01em;
}

/* Newsletter widget */
.nl-widget-desc { font-size: .82rem; color: var(--mu); line-height: 1.7; font-weight: 300; margin-bottom: 1rem; }
.nl-widget-form { display: flex; flex-direction: column; gap: .6rem; }
.nl-widget-form input {
  padding: .7rem 1rem; border-radius: 12px;
  border: 1.5px solid rgba(127,119,221,.18); background: var(--lav);
  font-family: 'DM Sans', sans-serif; font-size: .85rem; color: var(--ink);
  outline: none; transition: border-color .2s;
}
.nl-widget-form input:focus { border-color: var(--vi); background: var(--wh); }
.nl-widget-form button {
  padding: .7rem 1rem; border-radius: 100px;
  background: var(--mid); color: var(--wh); border: none;
  font-family: 'DM Sans', sans-serif; font-size: .83rem; font-weight: 600;
  cursor: none; transition: background .2s;
}
.nl-widget-form button:hover { background: var(--vi); }

/* Category list */
.cat-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .84rem; color: var(--mu); padding: .4rem .5rem;
  border-radius: 8px; transition: background .2s, color .2s; cursor: none;
}
.cat-list a:hover { background: var(--lav); color: var(--vi); }
.cat-list .cat-count {
  font-size: .7rem; background: var(--lav); color: var(--vi);
  padding: .1rem .5rem; border-radius: 100px;
}

/* Toolkit promo widget */
.toolkit-widget {
  background: var(--mid2); border: none; text-align: center; position: relative; overflow: hidden;
}
.toolkit-widget::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(127,119,221,.1); pointer-events: none;
}
.toolkit-widget .widget-title { color: var(--wh); position: relative; z-index: 1; }
.toolkit-widget p { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.toolkit-widget a {
  display: block; background: linear-gradient(135deg, var(--bld), #f5c8da);
  color: var(--mid); padding: .75rem 1.5rem; border-radius: 100px;
  font-size: .85rem; font-weight: 700; text-decoration: none; cursor: none;
  transition: transform .2s; position: relative; z-index: 1;
}
.toolkit-widget a:hover { transform: translateY(-2px); color: var(--mid); }

/* ═══════════════════════════════════════════════
   SINGLE POST
═══════════════════════════════════════════════ */
.single-layout {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 4rem; padding: 5rem 2rem;
}
@media (max-width: 960px) {
  .single-layout { grid-template-columns: 1fr; }
}

.post-header { margin-bottom: 2.5rem; }
.post-header .post-card-meta { margin-bottom: 1.25rem; }
.post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--mid);
  letter-spacing: -.04em; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.post-header .post-intro {
  font-size: 1.08rem; color: var(--mu);
  line-height: 1.8; font-weight: 300;
  max-width: 680px;
}

.post-featured-img {
  width: 100%; border-radius: 20px; overflow: hidden;
  margin-bottom: 3rem; aspect-ratio: 16/7;
}
.post-featured-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

/* Post content typography */
.post-content { max-width: 720px; }
.post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700; color: var(--mid);
  margin: 2.5rem 0 .85rem; letter-spacing: -.02em; line-height: 1.2;
}
.post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--mid);
  margin: 2rem 0 .65rem; letter-spacing: -.01em;
}
.post-content h4 {
  font-size: 1rem; font-weight: 600; color: var(--mid);
  margin: 1.5rem 0 .5rem;
}
.post-content p {
  font-size: .96rem; color: var(--ink); line-height: 1.85;
  margin-bottom: 1.25rem; font-weight: 300;
}
.post-content p:last-child { margin-bottom: 0; }
.post-content ul, .post-content ol {
  margin: 1rem 0 1.25rem 1.5rem; font-size: .95rem;
  color: var(--ink); line-height: 1.8; font-weight: 300;
}
.post-content li { margin-bottom: .4rem; }
.post-content a { color: var(--vi); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: var(--mid); }
.post-content strong { font-weight: 600; color: var(--mid); }
.post-content em { font-style: italic; }
.post-content blockquote {
  border-left: 3px solid var(--vi); padding: 1rem 1.5rem;
  margin: 2rem 0; background: var(--lav); border-radius: 0 16px 16px 0;
}
.post-content blockquote p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1.05rem; color: var(--mid); margin: 0; font-weight: 400;
}
.post-content img {
  border-radius: 16px; margin: 1.5rem 0;
  box-shadow: 0 8px 32px rgba(38,33,92,.09);
}
.post-content hr {
  border: none; border-top: 1px solid rgba(127,119,221,.15);
  margin: 2.5rem 0;
}

/* Callout boxes */
.callout {
  background: var(--lav); border: 1px solid rgba(127,119,221,.15);
  border-radius: 16px; padding: 1.5rem;
  margin: 1.75rem 0;
}
.callout-title {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--vi);
  margin-bottom: .65rem;
}
.callout p { font-size: .9rem; color: var(--mu); margin: 0; }

/* Post footer / tags */
.post-tags {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(38,33,92,.07);
}
.post-tags-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(107,104,128,.5);
}
.post-tag {
  background: var(--lav); color: var(--vi); font-size: .72rem;
  padding: .22rem .75rem; border-radius: 100px; font-weight: 500;
  text-decoration: none; cursor: none;
}
.post-tag:hover { background: rgba(127,119,221,.2); color: var(--mid); }

/* Post navigation (prev/next) */
.post-navigation {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(38,33,92,.07);
}
.post-nav-link {
  background: var(--wh); border-radius: 18px; padding: 1.25rem 1.5rem;
  border: 1px solid rgba(127,119,221,.08); text-decoration: none;
  cursor: none; transition: transform .25s, box-shadow .25s;
}
.post-nav-link:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(38,33,92,.07); }
.post-nav-link.next-post { text-align: right; }
.post-nav-direction {
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--vi); margin-bottom: .35rem;
  display: block;
}
.post-nav-title {
  font-family: 'Playfair Display', serif;
  font-size: .95rem; font-weight: 600; color: var(--mid); line-height: 1.3;
}
@media (max-width: 580px) { .post-navigation { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   INLINE CTA (within post content)
═══════════════════════════════════════════════ */
.inline-cta {
  background: var(--mid2); border-radius: 20px; padding: 2rem;
  text-align: center; margin: 2.5rem 0; position: relative; overflow: hidden;
}
.inline-cta::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(127,119,221,.08); pointer-events: none;
}
.inline-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--wh); margin-bottom: .5rem; z-index: 1; position: relative;
}
.inline-cta p {
  font-size: .84rem; color: rgba(255,255,255,.42);
  line-height: 1.7; font-weight: 300; margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}
.inline-cta a {
  display: inline-block; background: linear-gradient(135deg, var(--bld), #f5c8da);
  color: var(--mid); padding: .8rem 1.75rem; border-radius: 100px;
  font-size: .86rem; font-weight: 700; text-decoration: none; cursor: none;
  transition: transform .2s; position: relative; z-index: 1;
}
.inline-cta a:hover { transform: translateY(-2px); color: var(--mid); }

/* ═══════════════════════════════════════════════
   AUTHOR BOX
═══════════════════════════════════════════════ */
.author-box {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--wh); border-radius: 20px; padding: 1.75rem;
  border: 1px solid rgba(127,119,221,.08); margin-top: 3rem;
}
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--lav); border: 2px solid rgba(127,119,221,.15);
}
.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--mid); margin-bottom: .3rem;
}
.author-bio { font-size: .83rem; color: var(--mu); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════════════
   RELATED POSTS
═══════════════════════════════════════════════ */
.related-posts { padding: 5rem 2rem; background: var(--lav); }
.related-posts-inner { max-width: 1160px; margin: 0 auto; }
.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--mid);
  margin-bottom: 2rem; letter-spacing: -.02em;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ═══════════════════════════════════════════════
   404 PAGE
═══════════════════════════════════════════════ */
.error-page {
  min-height: 70vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 8rem 2rem;
}
.error-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 8rem); font-weight: 700;
  color: rgba(38,33,92,.07); line-height: 1;
  margin-bottom: 1rem;
}
.error-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem); color: var(--mid);
  margin-bottom: .75rem; letter-spacing: -.02em;
}
.error-page p {
  font-size: .95rem; color: var(--mu);
  line-height: 1.8; font-weight: 300; max-width: 480px; margin: 0 auto 2rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
  background: var(--mid2); color: rgba(255,255,255,.22);
  text-align: center; padding: 3.5rem 2rem;
  font-size: .8rem; line-height: 1.75;
  border-top: 1px solid rgba(255,255,255,.04);
}
.site-footer a {
  color: rgba(255,255,255,.38); text-decoration: none;
  transition: color .2s; cursor: none;
}
.site-footer a:hover { color: var(--bl); }
.f-logo {
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; margin-bottom: .5rem;
}
.f-logo img { height: 32px; width: auto; opacity: .65; }
.f-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: rgba(255,255,255,.5); font-weight: 700;
}
.f-tag {
  color: rgba(255,255,255,.3); margin-bottom: 1.75rem;
  font-weight: 300; font-size: .83rem;
}
.f-links {
  display: flex; gap: 2rem; justify-content: center;
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.f-disc {
  font-size: .7rem; opacity: 1; color: rgba(255,255,255,0.6);
  max-width: 460px; margin: 0 auto; line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════ */
.rv {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.rv.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
