/* =========================================================
   Priyanka — Learning Design Portfolio
   Lavender · white · one violet pop · sage + warm pastel accents
   Editorial, human, no serifs. Lead with the person.
   ========================================================= */

:root {
  --bg:           #ffffff;
  --bg-soft:      #f7f5fd;
  --surface:      #ffffff;

  --ink:          #221d30;
  --ink-soft:     #6c6580;

  --lavender:     #b9a8ec;
  --lavender-200: #ded4f7;
  --lavender-050: #f1ecfc;
  --highlight:    #6d4ad9;
  --highlight-ink:#5836c4;

  --p-peach:      #ffe2b0;   /* warm yellow-orange */
  --p-mint:       #cce1b4;   /* soft sage green */
  --p-lav:        #e3d7fb;
  --p-butter:     #fdeec2;
  --p-rose:       #f9cfe0;
  --ink-on-pastel:#5a5470;   /* muted text that still passes AA on pastels */

  --line:         #ece8f6;
  --grid-line:    rgba(109, 74, 217, 0.07);

  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;

  --radius:       20px;
  --radius-sm:    12px;
  --maxw:         1120px;
  --shadow:       0 18px 50px rgba(75, 50, 140, 0.10);
  --shadow-sm:    0 8px 24px rgba(75, 50, 140, 0.08);
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.022em; font-weight: 700; margin: 0; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--highlight); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--highlight); outline-offset: 3px; border-radius: 6px; }

/* pastel marker highlight */
.mark { background: linear-gradient(180deg, transparent 58%, var(--p-lav) 58%); padding: 0 .08em; }
.mark--peach { background: linear-gradient(180deg, transparent 58%, var(--p-peach) 58%); }
.mark--mint  { background: linear-gradient(180deg, transparent 58%, var(--p-mint) 58%); }
.mark--butter{ background: linear-gradient(180deg, transparent 58%, var(--p-butter) 58%); }
.pop { color: var(--highlight); }

/* ---------- GRID CANVAS BACKGROUND ---------- */
.grid-bg {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 46px 46px;
}

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.section--soft { background: var(--bg-soft); }
section[id] { scroll-margin-top: 88px; }
.kicker { text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 700; color: var(--ink-soft); margin: 0 0 1.1rem; }
.h-sec { font-size: clamp(2rem, 4.6vw, 3.1rem); max-width: 20ch; margin-bottom: 1.1rem; }
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 62ch; }

/* ---------- HEADER / NAV ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 85%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 1.05rem; }
.nav__brand { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; text-decoration: none; letter-spacing: -0.02em; }
.nav__brand span { color: var(--highlight); }
.nav__links { display: flex; gap: 1.9rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__links > li > a { text-decoration: none; color: var(--ink-soft); font-size: .95rem; font-weight: 600; transition: color .2s; position: relative; }
.nav__links > li > a:hover, .nav__links > li > a[aria-current="page"] { color: var(--ink); }
.nav__links > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--highlight); transform: scaleX(0); transform-origin: center; transition: transform .22s ease; }
.nav__links > li > a:hover::after, .nav__links > li > a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { color: var(--highlight) !important; font-weight: 700; }
.nav__cta::after { display: none !important; }

/* mobile nav: hamburger toggle reveals a stacked menu */
.nav__toggle { display: none; }
@media (max-width: 680px) {
  .nav { position: relative; }
  .nav__toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; padding: .6rem .4rem; cursor: pointer; }
  .nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__links { position: absolute; top: calc(100% + 1px); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 0 0 16px 16px; box-shadow: var(--shadow); padding: .4rem .6rem .8rem; margin: 0; display: none; }
  .nav.is-open .nav__links { display: flex; }
  .nav__links > li, .nav__links > li.hide-sm { display: block; }
  .nav__links > li > a { display: block; padding: .9rem .6rem; font-size: 1.05rem; border-radius: 10px; color: var(--ink); }
  .nav__links > li > a:hover, .nav__links > li > a[aria-current="page"] { background: var(--bg-soft); }
  .nav__links > li > a::after { display: none; }
  .submenu { display: none !important; }
}

/* nav dropdowns */
.has-menu { position: relative; }
.submenu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 250px; margin: 0; padding: .45rem; list-style: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease;
}
.submenu::before { content: ""; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.has-menu:hover > .submenu, .has-menu:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(10px); }
.submenu a { display: block; padding: .55rem .7rem; border-radius: 9px; text-decoration: none; color: var(--ink); font-size: .92rem; font-weight: 600; transition: background .15s ease; }
.submenu a small { display: block; font-weight: 500; font-size: .78rem; color: var(--ink-soft); margin-top: .1rem; }
.submenu a:hover { background: var(--bg-soft); }
@media (max-width: 680px) { .submenu { display: none; } }

/* line-art doodles */
.has-doodle { position: relative; }
.doodle { position: absolute; top: clamp(.5rem, 3vw, 2rem); right: clamp(1rem, 5vw, 3rem); width: clamp(84px, 11vw, 132px); color: var(--lavender); pointer-events: none; z-index: 1; }
.doodle svg { width: 100%; height: auto; display: block; filter: url(#sketch); }
.doodle [data-stroke] { stroke: currentColor; stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.doodle [data-fill] { fill: currentColor; stroke: none; }
@media (max-width: 600px) { .doodle { display: none; } }

/* ---------- BUTTONS / TEXT LINKS ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-weight: 700; font-size: 1rem; padding: .85rem 1.6rem; border-radius: 999px; transition: transform .2s ease, box-shadow .2s ease, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #000; }
.btn--ghost { border: 1.5px solid var(--line); color: var(--ink); background: var(--surface); }
.btn--ghost:hover { border-color: var(--lavender); }
.tlink { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--highlight); text-decoration: none; }
.tlink:hover { gap: .65rem; }

/* ---------- HERO ---------- */
.hero { position: relative; }
.hero__inner { padding-block: clamp(4rem, 13vw, 8.5rem); }
.hero__kicker { text-transform: uppercase; letter-spacing: .2em; font-size: .8rem; font-weight: 700; color: var(--ink-soft); margin: 0 0 1.4rem; }
.hero__title { font-size: clamp(2.7rem, 8vw, 5.2rem); max-width: 14ch; margin-bottom: 1.6rem; font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; }
.hero__lede { font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: var(--ink-soft); max-width: 52ch; margin-bottom: 2.25rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* hero principle (one heart, reveals a belief) */
.principle { display: flex; align-items: center; gap: 1rem; margin-top: 3rem; }
.principle__heart { background: none; border: none; cursor: pointer; width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; flex-shrink: 0; transition: background .2s ease; animation: beat 2.6s ease-in-out infinite; }
.principle__heart:hover { background: var(--lavender-050); }
.principle__heart svg { width: 34px; height: 34px; overflow: visible; }
.principle__heart svg path { stroke: var(--highlight); stroke-width: 2; fill: none; transition: fill .35s ease; }
.principle__heart:hover svg path, .principle__heart[aria-expanded="true"] svg path { fill: var(--p-rose); }
.principle__hint { margin: 0; font-size: .85rem; color: var(--ink-soft); }
.principle__text { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2.2vw, 1.35rem); letter-spacing: -0.02em; max-width: 20ch; }
@keyframes beat { 0%, 100% { transform: scale(1); } 12% { transform: scale(1.16); } 24% { transform: scale(1); } 36% { transform: scale(1.1); } 50% { transform: scale(1); } }
@media (min-width: 980px) {
  .principle { position: absolute; right: clamp(2rem, 6vw, 5rem); bottom: clamp(2.5rem, 8vw, 5rem); margin: 0; flex-direction: column; text-align: center; max-width: 16rem; }
}

/* ---------- STAT STRIP ---------- */
.stats { display: flex; gap: clamp(1.75rem, 6vw, 4.5rem); flex-wrap: wrap; }
.stats div strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.5rem); letter-spacing: -0.02em; }
.stats div span { font-size: .92rem; color: var(--ink-soft); }

/* ---------- BELIEFS ---------- */
.beliefs { list-style: none; margin: 0; padding: 0; }
.beliefs li { display: grid; grid-template-columns: 3.5rem 1fr; gap: clamp(1rem, 4vw, 2.5rem); padding: clamp(1.75rem, 4vw, 2.5rem) 0; border-top: 1px solid var(--line); }
.beliefs li:last-child { border-bottom: 1px solid var(--line); }
.belief__num { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--lavender); padding-top: .35rem; }
.belief__lead { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.45rem, 3.4vw, 2.15rem); line-height: 1.14; letter-spacing: -0.025em; margin: 0 0 .6rem; max-width: 22ch; }
.belief__sub { margin: 0; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.12rem); max-width: 56ch; }
@media (max-width: 560px) { .beliefs li { grid-template-columns: 1fr; gap: .5rem; } .belief__num { padding-top: 0; } }

/* ---------- PROCESS ---------- */
.process { list-style: none; margin: 0; padding: 0; }
.process li { display: grid; grid-template-columns: 4.5rem 1fr; gap: clamp(1rem, 4vw, 2.5rem); padding: 1.9rem 0; border-top: 1px solid var(--line); align-items: baseline; }
.process li:last-child { border-bottom: 1px solid var(--line); }
.process__num { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--lavender); }
.process h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin-bottom: .4rem; }
.process p { margin: 0; color: var(--ink-soft); max-width: 58ch; }
@media (max-width: 560px) { .process li { grid-template-columns: 1fr; gap: .4rem; } }

/* ---------- WORK FILTER ---------- */
.filters { display: flex; gap: clamp(1rem, 3vw, 2rem); flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-bottom: 2.5rem; }
.filter { border: none; background: none; font: inherit; font-weight: 600; font-size: .98rem; color: var(--ink-soft); padding: 0 0 1rem; cursor: pointer; position: relative; transition: color .2s; }
.filter:hover { color: var(--ink); }
.filter[aria-pressed="true"] { color: var(--ink); }
.filter[aria-pressed="true"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--highlight); }

/* ---------- WORK CARDS ---------- */
.work-grid { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .25s ease, box-shadow .25s ease; }
.card.is-hidden { display: none; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16/10; display: grid; place-items: center; }
.card:nth-child(4n+1) .card__media { background: var(--p-lav); }
.card:nth-child(4n+2) .card__media { background: var(--p-mint); }
.card:nth-child(4n+3) .card__media { background: var(--p-peach); }
.card:nth-child(4n)   .card__media { background: var(--p-butter); }
.card__placeholder { font-size: .8rem; color: var(--ink-soft); background: rgba(255,255,255,.72); padding: .4rem 1rem; border-radius: 999px; }
.card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.card__tag { text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 700; color: var(--highlight); margin: 0; }
.card__title { font-size: 1.35rem; }
.card__desc { margin: 0; color: var(--ink-soft); flex: 1; }
.card__link { font-weight: 700; color: var(--ink); margin-top: .4rem; }

/* ---------- SKILL TAGS (typed + color-coded) ---------- */
.tags { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.tag { font-size: .74rem; font-weight: 600; padding: .25rem .7rem; border-radius: 999px; border: 1px solid transparent; white-space: nowrap; }
.tag--approach { background: #e7ddfa; border-color: #cdbcf2; color: #4b3a86; }
.tag--skill    { background: #ffe8c4; border-color: #f2c987; color: #955b18; }
.tag--tool     { background: #d7e9c2; border-color: #a2cb8b; color: #4c6b35; }
.tag:not([class*="tag--"]) { background: var(--lavender-050); border-color: var(--lavender-200); color: var(--highlight-ink); }

/* tag legend */
.legend { display: flex; flex-wrap: wrap; gap: 1.4rem; margin: 0 0 2rem; font-size: .82rem; color: var(--ink-soft); }
.legend span { display: inline-flex; align-items: center; gap: .5rem; }
.legend i { width: 12px; height: 12px; border-radius: 50%; border: 1px solid; flex-shrink: 0; }
.legend .l-approach { background: #e7ddfa; border-color: #cdbcf2; }
.legend .l-skill    { background: #ffe8c4; border-color: #f2c987; }
.legend .l-tool     { background: #d7e9c2; border-color: #a2cb8b; }
.legend b { color: var(--ink); font-weight: 700; }

/* ---------- TIMELINE ---------- */
.timeline { list-style: none; margin: 0; padding: 0; }
.tl { padding: 1.6rem 0 1.6rem 1.75rem; border-left: 2px solid var(--line); position: relative; }
.tl::before { content: ""; position: absolute; left: -7px; top: 2rem; width: 12px; height: 12px; border-radius: 50%; background: var(--lavender); }
.tl__date { font-size: .8rem; font-weight: 700; letter-spacing: .06em; color: var(--ink-soft); }
.tl h3 { font-size: 1.25rem; margin: .35rem 0 .15rem; }
.tl__org { font-weight: 700; margin: 0 0 .35rem; }
.tl p:last-child { margin: 0; color: var(--ink-soft); }

/* ---------- CREDENTIALS ---------- */
.cred-list { list-style: none; margin: 0; padding: 0; }
.cred-list li { display: grid; grid-template-columns: minmax(140px, 14rem) 1fr; gap: 1.5rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.cred-list li:last-child { border-bottom: 1px solid var(--line); }
.cred-list .k { font-weight: 700; }
.cred-list .v { color: var(--ink-soft); margin: 0; }
@media (max-width: 560px) { .cred-list li { grid-template-columns: 1fr; gap: .25rem; } }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(135deg, var(--lavender-050), var(--p-lav)); border-radius: var(--radius); padding: clamp(2.5rem, 6vw, 4rem); }
.cta h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 1rem; max-width: 18ch; }
.cta p { color: var(--ink-on-pastel); max-width: 50ch; margin: 0 0 2rem; font-size: 1.1rem; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.1fr 1fr; align-items: start; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.field { display: block; margin-bottom: 1.1rem; }
.field span { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .92rem; }
.field input, .field textarea { width: 100%; font: inherit; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--lavender); }
.contact-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.contact-list li { padding: 1rem 0; border-top: 1px solid var(--line); }
.contact-list .k { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); }
.contact-list a { color: var(--highlight); font-weight: 700; text-decoration: none; }

/* ---------- CASE STUDY ---------- */
.case-hero { padding-block: clamp(3rem, 8vw, 5rem); }
.case-meta { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.case-meta div span { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: .25rem; }
.case-meta div strong { font-family: var(--font-display); font-size: 1.05rem; }
.case-body { max-width: 70ch; margin-inline: auto; }
.case-body h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.case-body p { color: var(--ink); margin: 0 0 1.25rem; }
.case-figure { background: var(--p-lav); border-radius: var(--radius); aspect-ratio: 16/9; display: grid; place-items: center; margin: 2rem 0; color: var(--ink-on-pastel); font-size: .9rem; }

/* case study: aligned, separated sections */
.case-col { max-width: 780px; margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }
.case-block { padding-block: clamp(2.25rem, 5vw, 3.25rem); border-top: 1px solid var(--line); }
.case-block:first-child { border-top: none; }
.case-block__label { display: flex; align-items: baseline; gap: .6rem; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--ink-soft); margin: 0 0 1.1rem; }
.case-block__label b { color: var(--highlight); font-size: .95rem; font-family: var(--font-display); }
.case-block > h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); margin: 0 0 1rem; max-width: 22ch; }
.case-block p { color: var(--ink); margin: 0 0 1.1rem; max-width: 64ch; }
.case-block p.lede { color: var(--ink-soft); }
.case-block .decisions, .case-block .process, .case-block .outcomes { margin-top: 1.5rem; }
.case-block .callout p { max-width: none; }

/* ---------- BLOG POST PROSE ---------- */
.prose { max-width: 66ch; margin-inline: auto; }
.prose p { margin: 0 0 1.3rem; color: var(--ink); font-size: 1.08rem; line-height: 1.7; }
.prose h2 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); margin: 2.4rem 0 .9rem; }
.prose h3 { font-size: 1.15rem; margin: 1.9rem 0 .7rem; }
.prose ol, .prose ul { margin: 0 0 1.5rem; padding-left: 1.3rem; }
.prose li { margin-bottom: .8rem; color: var(--ink); line-height: 1.65; }
.prose li::marker { color: var(--highlight); font-weight: 700; }
.prose blockquote { margin: 1.9rem 0; padding: .4rem 0 .4rem 1.5rem; border-left: 3px solid var(--lavender); font-family: var(--font-display); font-size: clamp(1.2rem, 2.4vw, 1.45rem); font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; color: var(--ink); }
.prose strong { font-weight: 700; }
.prose em { font-style: italic; }
.post-meta { color: var(--ink-soft); font-weight: 600; font-size: .9rem; margin-top: 1rem; }
.post-figure { background: var(--bg-soft); border: 1px dashed var(--line); border-radius: var(--radius); padding: 2rem; margin: 1.75rem 0; text-align: center; color: var(--ink-soft); font-size: .9rem; }
.post-foot { max-width: 66ch; margin: 3rem auto 0; padding-top: 1.75rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* magazine treatment */
.prose .lead { font-size: clamp(1.18rem, 2.5vw, 1.38rem); line-height: 1.6; color: var(--ink); }
.prose .lead::first-letter { float: left; font-family: var(--font-display); font-weight: 800; font-size: 3.4em; line-height: .72; padding: .04em .12em 0 0; color: var(--highlight); }
.prose .key { background: linear-gradient(180deg, transparent 58%, var(--p-butter) 58%); }
.pull { max-width: 32ch; margin: 3rem auto; text-align: center; }
.pull::before { content: "\201C"; display: block; font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: .5; color: var(--lavender); margin-bottom: .6rem; }
.pull p { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3.8vw, 2.1rem); line-height: 1.24; letter-spacing: -0.025em; color: var(--ink); }
.fig { margin: 2.75rem 0; }
.fig__ph { background: linear-gradient(135deg, var(--lavender-050), var(--p-lav)); border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 16/9; display: grid; place-items: center; color: var(--ink-on-pastel); font-size: .85rem; text-align: center; padding: 1rem; }
.fig figcaption { margin-top: .7rem; font-size: .85rem; color: var(--ink-soft); text-align: center; }

/* ---------- DECISION CARDS ---------- */
.decisions { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); list-style: none; margin: 0; padding: 0; }
.decision { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; background: var(--surface); }
.decision__row { padding: .65rem 0; }
.decision__row + .decision__row { border-top: 1px dashed var(--line); }
.decision__label { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: .25rem; }
.decision__ai .decision__label { color: var(--ink-soft); }
.decision__me .decision__label { color: var(--highlight); }
.decision__ai p { margin: 0; color: var(--ink-soft); }
.decision__me p { margin: 0; color: var(--ink); font-weight: 600; }

/* ---------- OUTCOME CALLOUTS ---------- */
.outcomes { display: flex; gap: clamp(1.75rem, 6vw, 4rem); flex-wrap: wrap; }
.outcome strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 2.6rem); letter-spacing: -0.02em; }
.outcome span { color: var(--ink-soft); font-size: .95rem; }

/* ---------- REFLECTION CALLOUT ---------- */
.callout { border-left: 3px solid var(--lavender); background: var(--bg-soft); padding: 1.4rem 1.6rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.callout__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--highlight); margin: 0 0 .4rem; }
.callout p { margin: 0; font-size: 1.08rem; }

/* ---------- ABOUT INTRO (circle photo + text) ---------- */
.about-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.about-photo { width: min(300px, 80%); aspect-ratio: 1; margin-inline: auto; border-radius: 50%; background: linear-gradient(150deg, var(--p-lav), var(--lavender-050)); display: grid; place-items: center; color: var(--ink-on-pastel); font-size: .85rem; text-align: center; padding: 1rem; border: 7px solid #fff; box-shadow: 0 0 0 2px var(--lavender-200), 0 22px 48px rgba(75, 50, 140, .18); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
@media (max-width: 760px) { .about-intro { grid-template-columns: 1fr; } }

/* pull quote (about) */
.pullquote { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3.6vw, 2.3rem); line-height: 1.2; letter-spacing: -0.025em; max-width: 24ch; }
.pullquote--center { margin-inline: auto; text-align: center; }

/* callout cards (about) */
.notes { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); list-style: none; margin: 0; padding: 0; }
.note { padding: 1.4rem 1.5rem; border-radius: var(--radius); background: var(--bg-soft); border: 1px solid var(--line); }
.note h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.note p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- BLOG INDEX ---------- */
.posts { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.post { display: grid; grid-template-columns: 9rem 1fr; gap: clamp(1rem, 4vw, 2.5rem); padding: 1.9rem 0; border-top: 1px solid var(--line); text-decoration: none; color: inherit; transition: background .2s ease; }
.post:last-child { border-bottom: 1px solid var(--line); }
.post:hover { background: var(--bg-soft); }
.post:hover .post__title { color: var(--highlight); }
.post__meta { color: var(--ink-soft); font-size: .82rem; padding-top: .2rem; }
.post__title { font-size: 1.3rem; margin: 0 0 .4rem; transition: color .2s ease; }
.post__excerpt { margin: 0 0 .7rem; color: var(--ink-soft); max-width: 60ch; }
@media (max-width: 560px) { .post { grid-template-columns: 1fr; gap: .5rem; } }

/* ---------- FOOTER ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; padding-block: 2.75rem; text-align: center; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; }
.footer-nav a { padding: .35rem 1.1rem; line-height: 1.2; border-right: 1px solid var(--line); font-weight: 600; color: var(--ink-soft); text-decoration: none; transition: color .2s ease; }
.footer-nav a:last-child { border-right: none; }
.footer-nav a:hover { color: var(--highlight); }
.footer-band { background: var(--ink); color: #fff; }
.footer-band__inner { display: flex; justify-content: space-between; align-items: center; gap: .5rem; flex-wrap: wrap; padding-block: 1rem; }
.footer-band small { color: rgba(255, 255, 255, .82); }
.heart-inline { color: #ff9bb3; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- MOTION PREFERENCES ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
