:root {
  --paper: #f3f6f5;
  --paper-2: #e6eeec;
  --ink: #12302f;
  --ink-soft: #4a6766;
  --rule: #c5d4d2;
  --folate: #b27a0e;
  --cobalamin: #a3243a;
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans: "Public Sans", "Helvetica Neue", Arial, sans-serif;
  --measure: 38rem;
  --card: #ffffff;
  --band: #e7efed;
  --shadow: 0 1px 2px rgba(18,48,47,.06), 0 10px 30px -14px rgba(18,48,47,.25);
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0f2222;
    --paper-2: #16302f;
    --ink: #e4eeec;
    --ink-soft: #9fb8b6;
    --rule: #2c4a49;
    --folate: #e0ad48;
    --cobalamin: #e0707f;
    --card: #16302f;
    --band: #132928;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 14px 34px -16px rgba(0,0,0,.6);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--sans);
  padding-inline: max(1.25rem, env(safe-area-inset-left)) max(1.25rem, env(safe-area-inset-right));
}
a { color: inherit; text-decoration-color: var(--cobalamin); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--cobalamin); }
a:focus-visible { outline: 2px solid var(--cobalamin); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin: 0; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.3rem; font-weight: 500; }

/* ---------- hero ---------- */
.hero {
  max-width: 72rem;
  margin: 0 auto;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.hero-text { padding-top: clamp(0rem, 6vw, 5rem); }
h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: .95;
}
h1 .cred { font-size: .38em; letter-spacing: 0; color: var(--ink-soft); font-weight: 400; }
.role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--folate);
  margin: .6rem 0 1.5rem;
}
.lead { font-size: 1.2rem; line-height: 1.55; max-width: 30rem; margin: 0 0 1.75rem; }
.hero-meta { list-style: none; padding: 0; margin: 0 0 2rem; color: var(--ink-soft); font-size: .98rem; }
.hero-meta li + li { margin-top: .2rem; }
.jump { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; font-size: .95rem; font-weight: 500; }
.jump a { text-decoration: none; border-bottom: 1px solid var(--rule); padding-bottom: .15rem; }
.jump a:hover { border-color: var(--cobalamin); }

/* ---------- the cycle ---------- */
.cycle { margin: 0; }
.cycle svg { display: block; width: 100%; height: auto; overflow: visible; }
.cycle figcaption { font-size: .95rem; line-height: 1.45; color: var(--ink-soft); max-width: 30rem; margin: .5rem 0 0 auto; text-align: right; font-style: italic; font-family: var(--serif); }

.portrait-bg { fill: var(--paper-2); }
.initials { font-family: var(--serif); font-weight: 300; font-size: 64px; fill: var(--ink-soft); letter-spacing: .04em; }

.arc { fill: none; stroke: var(--ink); stroke-width: 1.6; stroke-linecap: round; }
.ring.folate .arc { stroke: var(--folate); stroke-width: 1.4; }
.arrowhead { fill: none; stroke: var(--ink); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.arrowhead.folate { stroke: var(--folate); }
.nodes.main circle { fill: var(--paper); stroke: var(--ink); stroke-width: 1.6; }
.nodes.folate circle { fill: var(--paper); stroke: var(--folate); stroke-width: 1.4; }
.link { stroke: var(--cobalamin); stroke-width: 1.4; stroke-dasharray: 3 4; }
.b12 { fill: var(--cobalamin); }

.labels text { font-family: var(--sans); font-size: 15px; font-weight: 500; fill: var(--ink); }
.labels.small text { font-size: 12.5px; font-weight: 400; fill: var(--ink-soft); }
.labels .methyl { font-family: var(--serif); font-size: 17px; font-weight: 400; fill: var(--cobalamin); }
.labels.small .enzyme { font-style: italic; fill: var(--folate); font-weight: 500; }
.labels.small .vit { fill: var(--cobalamin); font-weight: 600; }

/* one orchestrated moment: the pathways draw themselves in, then the words appear */
@media (prefers-reduced-motion: no-preference) {
  .arc { stroke-dasharray: 320; stroke-dashoffset: 320; animation: draw 1.1s cubic-bezier(.5,0,.2,1) forwards; }
  .a1 { animation-delay: .2s; } .a2 { animation-delay: .5s; } .a3 { animation-delay: .8s; } .a4 { animation-delay: 1.1s; }
  .a5 { animation-delay: 1.5s; }
  .f1 { animation-delay: 1.3s; } .f2 { animation-delay: 1.5s; } .f3 { animation-delay: 1.7s; }
  .nodes, .labels, .link, .b12, .arrowhead { opacity: 0; animation: appear .6s ease forwards; }
  .nodes.main { animation-delay: .3s; }
  .labels { animation-delay: 1.4s; }
  .nodes.folate, .link, .b12, .labels.small { animation-delay: 2s; }
  .arrowhead { animation-delay: 2.2s; }
}
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes appear { to { opacity: 1; } }

/* ---------- body sections ---------- */
main { max-width: 72rem; margin: 0 auto; }
main > section { padding-block: clamp(3rem, 7vw, 5.5rem); border-top: 1px solid var(--rule); }
.section-lead { color: var(--ink-soft); max-width: var(--measure); margin: -.5rem 0 2rem; }

.about { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(2rem, 6vw, 6rem); }
.about-text p { max-width: var(--measure); margin: 0 0 1rem; }
.facts { margin: 3.4rem 0 0; }
.facts div { padding: .9rem 0; border-bottom: 1px solid var(--rule); }
.facts div:first-child { border-top: 1px solid var(--rule); }
.facts dt { font-size: .9rem; color: var(--ink-soft); }
.facts dd { margin: .1rem 0 0; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }

.philosophy {
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
  max-width: 52rem;
  border-top: 1px solid var(--rule);
}
.philosophy p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  line-height: 1.3;
  text-indent: -.4em;
}
.philosophy blockquote p::before { content: "“"; color: var(--folate); }
.philosophy blockquote p::after { content: "”"; color: var(--folate); }

.samples { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.25rem; }
.sample { padding: 1.4rem 1.4rem 1.2rem; background: var(--paper-2); border-radius: 2px; display: flex; flex-direction: column; }
.sample.pending { background: transparent; border: 1px dashed var(--rule); }
.sample h3 { margin-bottom: .5rem; }
.sample p { margin: 0 0 1.25rem; font-size: .96rem; color: var(--ink-soft); }
.status { margin-top: auto; font-size: .85rem; font-weight: 500; color: var(--folate); }

.timeline { list-style: none; padding: 0; margin: 0; max-width: 48rem; }
.timeline > li { position: relative; padding: 0 0 2.5rem 2rem; border-left: 1px solid var(--rule); }
.timeline > li:last-child { padding-bottom: 0; }
.timeline > li::before {
  content: ""; position: absolute; left: -6px; top: .45rem; width: 11px; height: 11px;
  border-radius: 50%; background: var(--paper); border: 1.6px solid var(--ink);
}
.timeline > li:first-child::before { background: var(--ink); }
.years { margin: 0 0 .3rem; font-size: .9rem; font-weight: 600; color: var(--folate); font-variant-numeric: tabular-nums; }
.title { margin: .35rem 0 .75rem; font-family: var(--serif); font-style: italic; color: var(--ink-soft); }
.timeline ul { margin: 0; padding-left: 1.1rem; }
.timeline ul li { margin-bottom: .4rem; max-width: var(--measure); }
.timeline ul li::marker { color: var(--rule); }

.creds { margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); gap: 1.75rem 3rem; }
.creds dt { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; line-height: 1.3; }
.creds dd { margin: .25rem 0 0; color: var(--ink-soft); }

.contact p { max-width: var(--measure); margin: 0 0 1.5rem; }
.email { font-family: var(--serif); font-size: clamp(1.3rem, 4.2vw, 2.2rem); font-weight: 300; overflow-wrap: anywhere; }

.foot { max-width: 72rem; margin: 0 auto; padding-block: 2rem 3rem; border-top: 1px solid var(--rule); font-size: .88rem; color: var(--ink-soft); }
.foot p { margin: 0; }

/* ---------- narrow screens ---------- */
@media (max-width: 52rem) {
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding-top: 0; order: 1; }
  .cycle { order: 2; max-width: 34rem; margin: 0 auto; width: 100%; }
  .cycle figcaption { text-align: center; margin: .4rem auto 0; }
  .about { grid-template-columns: 1fr; }
  .facts { margin-top: 0; }
}

/* ---------- v2: photo, hiring-manager essentials ---------- */
.portrait-ring { fill: none; stroke: var(--paper); stroke-width: 6; }
.seeking { margin: 0 0 1.5rem; max-width: 30rem; padding-left: 1rem; border-left: 3px solid var(--folate); }
.seeking strong { font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; margin: 0 0 2rem; }
.btn { display: inline-block; background: var(--ink); color: var(--paper); text-decoration: none; padding: .75rem 1.4rem; border-radius: 999px; font-weight: 600; }
.btn:hover { background: var(--cobalamin); color: #fff; }
.btn-quiet { font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--folate); padding-bottom: .1rem; white-space: nowrap; }
.btn-quiet:hover { color: var(--cobalamin); border-color: var(--cobalamin); }
.case { padding: 2rem 0; border-top: 1px solid var(--rule); max-width: 52rem; }
.case-where { margin: 0 0 .35rem; color: var(--folate); font-weight: 600; font-size: .92rem; }
.case h3 { font-size: 1.7rem; font-weight: 400; margin-bottom: 1.1rem; }
.case dl { margin: 0; display: grid; gap: .8rem; }
.case dl > div { display: grid; grid-template-columns: 7rem minmax(0, 1fr); gap: 1.25rem; }
.case dt { font-weight: 600; color: var(--ink-soft); font-size: .95rem; }
.case dd { margin: 0; max-width: var(--measure); }
.talk-list { list-style: none; margin: 0; padding: 0; max-width: 52rem; }
.talk-list li { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.4rem 0; border-top: 1px solid var(--rule); }
.talk-list h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: .25rem; }
.talk-list p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.hero-meta { display: none; }
@media (max-width: 40rem) {
  .case dl > div { grid-template-columns: 1fr; gap: .1rem; }
  .talk-list li { flex-direction: column; align-items: flex-start; gap: .6rem; }
}

:root { --pres-accent: var(--ink); --pres-on: var(--paper); }


/* ================= level-up ================= */
html { scroll-padding-top: 5rem; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-inline: calc(-1 * max(1.25rem, env(safe-area-inset-left)));
  padding: calc(.65rem + env(safe-area-inset-top, 0px)) max(1.25rem, env(safe-area-inset-right)) .65rem max(1.25rem, env(safe-area-inset-left));
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.tb-name { font-family: var(--serif); font-size: 1.25rem; text-decoration: none; white-space: nowrap; }
.tb-name span { color: var(--ink-soft); font-size: .8em; }
.tb-links { display: flex; align-items: center; gap: 1.4rem; font-size: .92rem; font-weight: 500; }
.tb-links a { text-decoration: none; }
.tb-links a:hover { color: var(--cobalamin); }
.tb-links .tb-cta { background: var(--folate); color: #fff; padding: .45rem 1.05rem; border-radius: 999px; font-weight: 600; }
.tb-links .tb-cta:hover { background: var(--cobalamin); color: #fff; }

/* full-bleed tinted bands without extra wrappers */
.band { position: relative; background: var(--band); box-shadow: 0 0 0 100vmax var(--band); clip-path: inset(0 -100vmax); border-top: 0 !important; }
.band-strong { --band: #1b4541; color: #f1f6f4; }
.band-strong .attr { color: #cfe0dc; }
.band + section, .band + .band { border-top: 0 !important; }

/* stats band */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); padding-block: clamp(2rem, 5vw, 3rem) !important; }
.stats > div { padding: 0 1.25rem; border-left: 1px solid var(--rule); }
.stats > div:first-child { border-left: 0; padding-left: 0; }
.stats p { margin: 0; color: var(--ink-soft); font-size: .95rem; max-width: 14rem; }
.stats .num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 300; line-height: 1; color: var(--ink); margin-bottom: .4rem; }
.stats .num small { font-size: .45em; color: var(--folate); font-weight: 400; }

/* case cards */
.work .section-lead { margin-bottom: 2rem; }
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: 1.25rem; }
.case-card { background: var(--card); border: 1px solid var(--rule); border-radius: 16px; padding: 1.6rem 1.5rem 1.4rem; box-shadow: var(--shadow); display: flex; flex-direction: column; border-top: 4px solid var(--folate); }
.case-where { margin: 0 0 .5rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.case-where span { font-weight: 400; }
.case-card h3 { font-size: 1.45rem; line-height: 1.2; margin-bottom: 1.1rem; }
.step { margin-bottom: .9rem; }
.step p { margin: 0; font-size: .96rem; line-height: 1.5; }
.step-k { font-size: .78rem !important; font-weight: 700; letter-spacing: .02em; color: var(--folate); margin-bottom: .15rem !important; }
.result { margin-top: auto; padding: .9rem 1rem; border-radius: 10px; background: var(--band); }
.result p { margin: 0; font-size: .96rem; font-weight: 500; }
.result .res-big { font-family: var(--serif); font-size: 2.4rem; line-height: 1; font-weight: 400; color: var(--folate); margin: .15rem 0 .2rem; }

/* skills chips */
.skills h2 { margin-bottom: 1.1rem; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.chips li { background: var(--card); border: 1px solid var(--rule); border-radius: 999px; padding: .45rem 1rem; font-size: .93rem; font-weight: 500; }

/* presentations panel */
.panel { background: var(--card); border: 1px solid var(--rule); border-radius: 16px; padding: .5rem 1.5rem; box-shadow: var(--shadow); }
.panel .pres-table tbody tr:last-child td, .panel .pres-table tbody tr:last-child th { border-bottom: 0; }
.panel .pres-table thead th { padding-top: 1rem; }

/* philosophy band */
.philosophy.band { max-width: none; margin: 0; padding: clamp(3.5rem, 8vw, 6rem) 0 !important; text-align: center; }
.philosophy blockquote { margin: 0 auto; max-width: 50rem; }
.philosophy blockquote p { margin: 0; font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(1.7rem, 3.8vw, 2.7rem); line-height: 1.28; text-indent: 0; }
.philosophy blockquote p::before, .philosophy blockquote p::after { color: #e6b454; }
.philosophy .attr { margin: 1.25rem 0 0; font-size: .95rem; font-style: normal; font-family: var(--sans); text-indent: 0; }

/* about */
.about { display: block; }
.about-cols { columns: 2 20rem; column-gap: 3rem; }
.about-cols p { margin: 0 0 1rem; break-inside: avoid; }

/* experience as a card timeline */
.tl-cards > li { border-left: 2px solid var(--rule); padding-bottom: 1.25rem; }
.tl-cards > li::before { top: 1.4rem; left: -7px; background: var(--folate); border-color: var(--folate); }
.tl-card { background: var(--card); border: 1px solid var(--rule); border-radius: 14px; padding: 1.2rem 1.4rem; box-shadow: var(--shadow); }
.tl-cards { max-width: none; }
.tl-card .title { margin-bottom: .5rem; }

/* credentials */
.training h2 { margin-bottom: 1.5rem; }
.cred-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1rem; }
.cred-card { background: var(--card); border: 1px solid var(--rule); border-radius: 14px; padding: 1.25rem; box-shadow: var(--shadow); }
.cred-card h3 { font-size: 1.1rem; line-height: 1.3; margin: .75rem 0 .3rem; }
.cred-card p { margin: 0; color: var(--ink-soft); font-size: .93rem; }
.ico { display: inline-grid; place-items: center; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--band); }
.ico svg { width: 1.35rem; height: 1.35rem; fill: none; stroke: var(--folate); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* contact card */
.contact { text-align: left; }
.contact-card { display: flex; align-items: center; gap: clamp(1.25rem, 4vw, 2.5rem); background: var(--card); border: 1px solid var(--rule); border-radius: 20px; padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); border-left: 6px solid var(--folate); }
.contact-card img { width: clamp(6rem, 18vw, 9rem); height: auto; aspect-ratio: 1; border-radius: 50%; flex: none; }
.contact-card h2 { margin-bottom: .5rem; }
.contact-card p { margin: 0 0 1.25rem; color: var(--ink-soft); }
.btn.big { font-size: clamp(.95rem, 3.2vw, 1.1rem); padding: .85rem 1.5rem; overflow-wrap: anywhere; }

@media (max-width: 52rem) {
  .tb-links a:not(.tb-cta) { display: none; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 1.5rem; }
  .stats > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .contact-card { flex-direction: column; align-items: flex-start; }
}

/* resume download */
.btn-outline { display: inline-flex; align-items: center; gap: .45rem; padding: .7rem 1.3rem; border-radius: 999px; border: 1.5px solid var(--ink); font-weight: 600; text-decoration: none; white-space: nowrap; }
.btn-outline:hover { border-color: var(--cobalamin); color: var(--cobalamin); }
.dl-meta { font-size: .72rem; font-weight: 700; padding: .1rem .4rem; border-radius: 4px; background: var(--band); color: var(--ink-soft); }
.tb-links .tb-resume { font-weight: 600; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; margin: 0 !important; }
@media (max-width: 52rem) { .tb-links .tb-resume { display: inline; } }

/* LinkedIn */
.li-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; text-decoration: none; }
.li-link:hover { color: var(--cobalamin); }
.li-ico { width: 1.3rem; height: 1.3rem; flex: none; }
.hero-links { margin: -1rem 0 2rem; }

/* name: keep "Deb Burke-Allen" on one line, let ", RPh" wrap */
h1 .nm { white-space: nowrap; }

.li-btn .li-ico { width: 1.25rem; height: 1.25rem; }

.li-round { display: inline-flex; align-items: center; justify-content: center; padding: .7rem; line-height: 1.6; border-radius: 50%; border: 1.5px solid var(--ink); flex: none; }
.li-round:hover { border-color: var(--cobalamin); }
.li-round .li-ico { width: 1.6em; height: 1.6em; display: block; }
.hero-actions { gap: .75rem; flex-wrap: wrap; }

@media (max-width: 75rem) { .hero-actions .dl-meta { display: none; } }

/* one button family: every button in a row is the same height */
.hero-actions .btn, .contact-actions .btn { border: 1.5px solid var(--ink); padding: .7rem 1.4rem; line-height: 1.6; }
.contact-actions { max-width: none !important; }
.hero-actions .dl-meta { display: none; }
@media (max-width: 75rem) {
  .hero-actions .btn, .hero-actions .btn-outline { padding: .7rem 1rem; font-size: .95rem; }
}

.contact-actions .btn.big { font-size: 1rem; }
.contact-actions { gap: .75rem; }
@media (max-width: 75rem) {
  .contact-actions .btn, .contact-actions .btn-outline { padding: .7rem 1rem; font-size: .95rem; }
  .contact-actions .dl-meta { display: none; }
}

@media (max-width: 75rem) { .contact-actions .btn.big { font-size: .95rem; } }

.contact-actions .btn-outline { color: var(--ink); }

.nowrap { white-space: nowrap; }

/* experience summaries */
.tl-sum { margin: .1rem 0 0; max-width: 44rem; }
/* phones: drop the folate mini-cycle, enlarge the pathway labels */
@media (max-width: 40rem) {
  .ring.folate, .nodes.folate, .cycle .link, .cycle .b12, .labels.small { display: none; }
  .labels text { font-size: 24px; }
  .labels .methyl { font-size: 26px; }
}

/* phones: action buttons stack full width */
@media (max-width: 40rem) {
  .hero-actions, .contact-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a, .contact-actions a { justify-content: center; text-align: center; }
  .contact-card > div { width: 100%; }
}

/* How I practice */
.practice { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.practice-text p { max-width: var(--measure); margin: 0 0 1rem; }
.practice-open { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 1.75rem); line-height: 1.35; color: var(--ink); }
.foundation { background: var(--card); border: 1px solid var(--rule); border-radius: 16px; padding: 1.5rem 1.6rem; box-shadow: var(--shadow); border-top: 4px solid var(--folate); }
.foundation h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.foundation > p { margin: 0 0 .9rem; color: var(--ink-soft); font-size: .98rem; }
.foundation ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.foundation li { position: relative; padding: .45rem 0 .45rem 1.9rem; border-top: 1px solid var(--rule); font-size: .98rem; }
.foundation li::before { content: ""; position: absolute; left: .2rem; top: .8rem; width: .8rem; height: .8rem; border-radius: 50%; border: 2px solid var(--folate); }
.foundation-close { margin: 0 !important; font-weight: 500; color: var(--ink) !important; }
.philosophy .attr { max-width: 40rem; margin-inline: auto !important; font-size: 1.05rem !important; line-height: 1.5; }
@media (max-width: 52rem) { .practice { grid-template-columns: 1fr; } }

/* three ideas */
.sec-k { margin: 0 0 .35rem; font-size: .85rem; font-weight: 700; color: var(--folate); letter-spacing: .02em; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; padding-block: clamp(2.5rem, 6vw, 4rem) !important; }
.pillar { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--rule); border-top: 4px solid var(--folate); border-radius: 16px; padding: 1.5rem 1.5rem 1.3rem; box-shadow: var(--shadow); text-decoration: none; color: var(--ink); transition: transform .15s ease, box-shadow .15s ease; }
.pillar:hover { transform: translateY(-2px); color: var(--ink); }
.pillar h2 { font-size: clamp(1.35rem, 2.2vw, 1.6rem); line-height: 1.2; margin: 0 0 .9rem; color: var(--ink); }
.pillar-k { margin: 0 0 .4rem; font-size: .8rem; font-weight: 700; color: var(--folate); letter-spacing: .02em; }
.pillar-num { font-family: var(--serif); font-weight: 300; font-size: 2.6rem; line-height: 1; margin: 0 0 .75rem; }
.pillar-num small { font-size: .45em; color: var(--folate); font-weight: 400; }
.pillar p:not(.pillar-k):not(.pillar-num) { margin: 0 0 1rem; color: var(--ink-soft); font-size: .96rem; line-height: 1.5; }
.pillar-go { margin-top: auto; font-weight: 600; font-size: .92rem; border-bottom: 1.5px solid var(--folate); align-self: flex-start; padding-bottom: .1rem; }
.case-grid.two { grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); }
@media (max-width: 52rem) { .pillars { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .pillar { transition: none; } }
