:root {
  --ink: #111111;
  --ink-2: #252525;
  --muted: #626262;
  --paper: #faf8f7;
  --card: #ffffff;
  --line: #e7dfdc;
  --line-strong: #d6cbc7;
  --red: #b20f16;
  --red-2: #d01922;
  --red-soft: #f8e7e8;
  --red-soft-2: #fff2f3;
  --black-soft: #1c1c1c;
  --grey-soft: #f2efee;
  --sand: #f6f1ee;
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.055);
  --radius-lg: 30px;
  --radius-md: 18px;
  --max: 1160px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -8%, rgba(178, 15, 22, 0.07), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(17, 17, 17, 0.055), transparent 26%),
    var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-2); }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; color: var(--muted); }
strong { color: var(--ink); }
em { color: var(--ink-2); }
.container { width: min(var(--max), calc(100% - 42px)); margin-inline: auto; }
.narrow { max-width: 850px; }
.section-pad { padding: 76px 0; }
.section-pad.compact { padding: 46px 0; }
.alt { background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(248,231,232,0.44)); border-block: 1px solid rgba(231,223,220,0.8); }
.soft-alt { background: linear-gradient(180deg, rgba(248,231,232,0.38), rgba(250,248,247,0.9)); }
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 12px; z-index: 40; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 248, 247, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214,203,199,0.78);
}
.header-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 850; letter-spacing: -0.025em; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 14px; background: linear-gradient(135deg, var(--ink), var(--red)); color: #fff; font-family: var(--serif); font-weight: 700; box-shadow: 0 12px 28px rgba(178,15,22,0.18); }
.brand-text { font-size: 1.02rem; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a { color: var(--ink-2); font-weight: 740; font-size: 0.9rem; padding: 9px 10px; border-radius: 999px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--red-soft); color: var(--red); }
.nav-pill { background: var(--ink) !important; color: #fff !important; padding-inline: 15px !important; }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 13px; font-weight: 800; color: var(--ink); }

.hero { position: relative; overflow: hidden; padding: 78px 0 64px; }
.hero::before {
  content: "";
  position: absolute;
  inset: 18px max(20px, calc((100vw - var(--max)) / 2)) 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,231,232,0.42)),
    radial-gradient(circle at 78% 20%, rgba(178,15,22,0.11), transparent 34%);
  border: 1px solid rgba(214,203,199,0.88);
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr); align-items: center; gap: 50px; }
.eyebrow { margin: 0 0 10px; color: var(--red); font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.7rem; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.035em; color: var(--ink); }
h1 { font-family: var(--serif); font-size: clamp(2.55rem, 5.2vw, 4.85rem); font-weight: 700; }
h2 { font-family: var(--serif); font-size: clamp(1.65rem, 3.0vw, 2.55rem); }
h3 { font-size: 1.06rem; letter-spacing: -0.02em; }
.page-hero h1 { font-size: clamp(2rem, 3.2vw, 3rem); }
.lead { color: var(--ink-2); font-size: clamp(1.12rem, 1.9vw, 1.55rem); max-width: 820px; margin: 16px 0 16px; line-height: 1.34; }
.lead.small { color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.08rem); line-height: 1.55; }
.hero-bio { color: var(--muted); font-size: 1.02rem; max-width: 780px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 10px 16px; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; color: var(--ink); font-weight: 850; box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05); cursor: pointer; }
.button.primary { background: var(--red); border-color: var(--red); color: #fff; }
.button.ghost { background: transparent; box-shadow: none; }
.button:hover { transform: translateY(-1px); }
.text-link { font-weight: 880; color: var(--red); }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.profile-card { background: rgba(255,255,255,0.93); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.portrait { width: 100%; aspect-ratio: 4 / 4.8; object-fit: cover; background: var(--red-soft); filter: grayscale(8%); }
.profile-card-body { padding: 20px; }
.profile-card h2 { font-family: var(--sans); font-size: 1.05rem; letter-spacing: -0.015em; margin-bottom: 8px; }
.email-link { display: inline-flex; margin-top: 4px; font-weight: 850; }

.theme-band { padding-top: 12px; padding-bottom: 18px; }
.keyword-rail { display: flex; flex-wrap: wrap; gap: 8px; }
.keyword-rail span { border: 1px solid var(--line); background: rgba(255,255,255,0.72); color: var(--ink-2); border-radius: 999px; padding: 7px 11px; font-weight: 780; font-size: 0.85rem; }
.keyword-rail span:nth-child(3n+1) { background: #fff; }
.keyword-rail span:nth-child(3n+2) { background: var(--red-soft-2); }
.keyword-rail span:nth-child(3n+3) { background: var(--grey-soft); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: #fff; padding: 20px; box-shadow: var(--shadow-soft); }
.stat::after { content:""; position:absolute; inset:auto 0 0; height:4px; background: linear-gradient(90deg, var(--ink), var(--red)); opacity:.82; }
.stat strong { display: block; font-size: 1.75rem; line-height: 1; letter-spacing: -0.045em; }
.stat span { display: block; margin-top: 7px; color: var(--muted); font-weight: 780; font-size: 0.88rem; line-height: 1.3; }

.work-nature-section { background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,241,238,0.54)); border-block: 1px solid rgba(231,223,220,0.65); }
.compact-head { margin-bottom: 18px; }
.nature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.nature-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,0.94); padding: 20px; box-shadow: var(--shadow-soft); }
.nature-card::after { content:""; position:absolute; inset:auto 0 0; height:4px; background: linear-gradient(90deg, var(--ink), var(--red)); opacity:.74; }
.nature-card h3, .nature-card strong { display: block; font-family: var(--serif); font-size: 1.08rem; line-height: 1.18; letter-spacing: -0.025em; margin-bottom: 9px; }
.nature-card p, .nature-card span { display: block; color: var(--muted); font-weight: 620; font-size: 0.92rem; line-height: 1.48; }

.split { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 42px; align-items: start; }
.calm-split h2 { max-width: 520px; }
.text-column p { font-size: 1.02rem; }
.identity-split { align-items: stretch; }
.intent-card, .profile-block, .card, .timeline-section, .note-box { background: rgba(255,255,255,0.93); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-soft); }
.intent-card, .profile-block { padding: 25px; }
.intent-card h2, .profile-block h2 { font-size: clamp(1.45rem, 2.3vw, 2.05rem); }
.twin-profile { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.profile-block { min-height: 100%; }
.academic-block { background: linear-gradient(180deg, #fff, var(--red-soft-2)); }
.public-block { background: linear-gradient(180deg, #fff, var(--grey-soft)); }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip { border: 1px solid var(--line-strong); background: rgba(255,255,255,0.86); color: var(--ink-2); border-radius: 999px; padding: 7px 11px; font-weight: 780; font-size: 0.88rem; }
.chips.small .chip { font-size: 0.78rem; padding: 5px 9px; }
.keyword-panel { margin-top: 20px; padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-soft); }
.keyword-panel p { margin-bottom: 0; }
.wide-keywords h2 { margin-bottom: 18px; }
.keyword-cloud .chip:nth-child(4n+2) { background: var(--red-soft-2); }
.keyword-cloud .chip:nth-child(4n+3) { background: var(--grey-soft); }

.section-head-row { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { padding: 20px; }
.card .meta, .pub-meta { color: var(--muted); font-size: 0.8rem; font-weight: 760; margin-bottom: 7px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 0.92rem; line-height: 1.45; }
.card-actions, .pub-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tiny-link, .copy-button { border: 1px solid var(--line); background: var(--red-soft-2); color: var(--ink); border-radius: 999px; padding: 6px 9px; font-weight: 820; font-size: 0.76rem; cursor: pointer; }
.copy-button:hover, .tiny-link:hover { background: var(--ink); color: #fff; }

.method-preview-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.method-preview, .method-card, .view-card, .graph-card { background: rgba(255,255,255,0.94); border: 1px solid var(--line); box-shadow: var(--shadow-soft); border-radius: 24px; }
.method-preview { padding: 20px; min-height: 100%; position: relative; overflow: hidden; }
.method-number { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(255,255,255,0.86); color: var(--red); font-family: var(--sans); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.075em; text-transform: uppercase; line-height: 1; padding: 6px 9px; margin-bottom: 18px; }
.method-preview h3 { margin-bottom: 10px; }
.method-preview p:last-child { margin-bottom: 0; }
.scan-zone { background: linear-gradient(180deg, #fff, #f6f1ee); }
.delphi-zone { background: linear-gradient(180deg, #fff, #fff0f1); }
.narrative-zone { background: linear-gradient(180deg, #fff, #f3f3f3); }
.philosophy-zone { background: linear-gradient(180deg, #fff, #f8e7e8); }
.space-zone { background: linear-gradient(180deg, #fff, #f2efee); }
.cla-zone { background: linear-gradient(180deg, #fff, #fff5f5); }
.limit-zone { background: linear-gradient(180deg, #fff, #eeeeee); }

.graphic-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.graph-card { padding: 20px; }
.graph-text { margin-bottom: 16px; }
.diagram { width: 100%; height: auto; display: block; }

.idea-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.idea-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-soft); padding: 22px; }
.idea-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.idea-card p { font-size: 0.95rem; }
.culture-split { align-items: start; }

.site-footer { padding: 42px 0 26px; background: var(--ink); color: #fff; }
.site-footer p, .site-footer a, .footer-note, .site-footer span { color: rgba(255,255,255,0.76); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.footer-links a { border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; padding: 7px 10px; font-weight: 800; }
.footer-note { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 24px; padding-top: 16px; font-size: 0.88rem; }

.page-hero { background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(248,231,232,0.5)); border-bottom: 1px solid var(--line); }
.research-hero { background: linear-gradient(135deg, #fff, var(--red-soft-2)); }
.research-intro-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.note-box { border-left: 5px solid var(--red); padding: 22px; }
.note-box h2 { font-size: clamp(1.35rem, 2vw, 1.85rem); margin-bottom: 12px; }
.red-note { background: linear-gradient(180deg, #fff, var(--red-soft-2)); }
.dark-note { background: linear-gradient(180deg, #fff, var(--grey-soft)); border-left-color: var(--ink); }
.methods-list, .view-list { display: grid; gap: 16px; }
.method-card, .view-card { padding: 24px; }
.method-kicker { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 9px; font-weight: 850; color: var(--red); background: #fff; font-size: 0.72rem; margin-bottom: 12px; }
.method-card h3, .view-card h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); margin-bottom: 10px; }
details { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 12px; }
summary { cursor: pointer; color: var(--red); font-weight: 880; }
details p { margin-top: 12px; }
.see-ref { font-size: 0.92rem; color: var(--ink-2); }
.view-card { background: linear-gradient(180deg, #fff, #fffafa); }
.view-card:nth-child(even) { background: linear-gradient(180deg, #fff, var(--grey-soft)); }


.section-note {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.imagination-strip {
  background:
    radial-gradient(circle at 12% 18%, rgba(178,15,22,0.055), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(246,241,238,0.58));
  border-block: 1px solid rgba(231,223,220,0.72);
}
.imagination-strip h2 {
  max-width: 560px;
}
.imagination-strip .side-illustration {
  background: #fff;
}

.controls-panel { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 18px; box-shadow: var(--shadow-soft); margin-bottom: 18px; }
.search-label { display: block; font-weight: 850; margin-bottom: 7px; }
.search-input { width: 100%; min-height: 46px; border: 1px solid var(--line-strong); border-radius: 14px; padding: 0 13px; font: inherit; background: var(--paper); }
.search-input:focus { outline: 3px solid rgba(178,15,22,0.13); border-color: var(--red); }
.filter-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.filter-button { border: 1px solid var(--line); background: var(--red-soft-2); border-radius: 999px; padding: 8px 11px; font-weight: 820; cursor: pointer; color: var(--ink); font-size: 0.82rem; }
.filter-button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.publication-meta { color: var(--muted); font-weight: 820; margin-bottom: 16px; font-size: 0.9rem; }
.publication-list { display: block; }
.publication-board { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr); gap: 18px; align-items: start; }
.publication-column { border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,0.92); padding: 18px; box-shadow: var(--shadow-soft); }
.public-column { background: linear-gradient(180deg, #fff, var(--grey-soft)); }
.column-head { position: sticky; top: 86px; background: inherit; z-index: 2; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 12px; }
.column-head h2 { font-family: var(--sans); font-size: 1.05rem; letter-spacing: -0.015em; }
.column-head p:last-child { margin: 6px 0 0; font-size: 0.84rem; font-weight: 820; color: var(--muted); }
.publication-group { display: grid; gap: 8px; margin-top: 16px; }
.publication-group + .publication-group { margin-top: 22px; }
.publication-group-head { border-top: 1px solid var(--line); padding-top: 14px; }
.publication-group:first-child .publication-group-head { border-top: 0; padding-top: 0; }
.publication-group-head h2 { font-family: var(--sans); font-size: 0.92rem; letter-spacing: -0.01em; }
.publication-group-head p { margin: 4px 0 0; font-size: 0.78rem; line-height: 1.35; }
.pub-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px; display: grid; grid-template-columns: 44px 1fr; gap: 10px; transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.pub-card:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(17,17,17,0.06); border-color: var(--line-strong); }
.pub-year { font-family: var(--serif); font-size: 0.92rem; line-height: 1; color: var(--red); font-weight: 700; }
.pub-card h2, .pub-card h3 { font-family: var(--sans); font-size: 0.86rem; line-height: 1.25; letter-spacing: -0.01em; margin-bottom: 4px; }
.pub-card p { font-size: 0.78rem; line-height: 1.35; margin-bottom: 0; }
.pub-category { display: inline-flex; width: fit-content; background: var(--red-soft-2); border: 1px solid var(--line); border-radius: 999px; padding: 3px 7px; color: var(--red); font-size: 0.62rem; font-weight: 850; margin-bottom: 6px; }
.publication-group .pub-category { display: none; }
.pub-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 7px; }
.pub-tag { font-size: 0.6rem; border-radius: 999px; padding: 2px 6px; background: var(--grey-soft); color: var(--muted); font-weight: 760; }
.pub-links { margin-top: 8px; gap: 5px; }
.public-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px; }
.public-kind { color: var(--muted); font-size: 0.72rem; font-weight: 800; margin-bottom: 5px; }
.public-item h3 { font-size: 0.86rem; line-height: 1.25; margin-bottom: 5px; }
.public-item p { font-size: 0.78rem; line-height: 1.35; margin-bottom: 8px; }

.cv-layout { display: grid; grid-template-columns: 300px 1fr; gap: 26px; align-items: start; }
.cv-sidebar { position: sticky; top: 92px; background: var(--red-soft-2); border: 1px solid var(--line); border-radius: 22px; padding: 22px; }
.cv-main { display: grid; gap: 20px; }
.timeline-section { padding: 22px; }
.timeline-section h2 { font-size: 1.8rem; margin-bottom: 14px; }
.timeline-item { display: grid; grid-template-columns: 128px 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.timeline-item:first-of-type { border-top: 0; padding-top: 0; }
.timeline-date { font-weight: 900; color: var(--red); }
.timeline-item h3 { margin-bottom: 5px; }
.timeline-item ul { margin: 8px 0 0; padding-left: 18px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.contact-card { background: rgba(255,255,255,0.94); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow-soft); padding: 26px; }
.contact-card h2 { font-family: var(--sans); font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.025em; overflow-wrap: anywhere; }
.primary-contact { background: linear-gradient(180deg, #fff, var(--red-soft-2)); }

@media (max-width: 1100px) {
  .method-preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .hero-grid, .split, .footer-grid, .cv-layout, .graphic-grid, .research-intro-grid { grid-template-columns: 1fr; }
  .publication-board { grid-template-columns: 1fr; }
  .column-head { position: static; }
  .card-grid, .stats-grid, .nature-grid, .idea-grid { grid-template-columns: repeat(2, 1fr); }
  .cv-sidebar { position: static; }
  .site-nav { display: none; position: absolute; top: 68px; left: 20px; right: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 10px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .nav-toggle { display: inline-flex; }
  .twin-profile { grid-template-columns: 1fr; }
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .hero { padding: 48px 0 42px; }
  .hero::before { inset: 10px 14px; border-radius: 26px; }
  .card-grid, .stats-grid, .nature-grid, .idea-grid, .method-preview-grid { grid-template-columns: 1fr; }
  .pub-card, .timeline-item { grid-template-columns: 1fr; gap: 7px; }
  .publication-column { padding: 14px; border-radius: 18px; }
  .section-head-row { align-items: start; flex-direction: column; }
  h1 { font-size: clamp(2.25rem, 13vw, 3.6rem); }
  .page-hero h1 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .section-pad { padding: 54px 0; }
  .footer-links { justify-content: flex-start; }
}

@media print {
  .site-header, .site-footer, .button, .controls-panel { display: none !important; }
  body { background: #fff; color: #000; }
  .page-hero, .timeline-section, .cv-sidebar, .publication-column, .method-card, .view-card, .note-box { border: 0; background: #fff; box-shadow: none; }
  .cv-layout, .publication-board { grid-template-columns: 1fr; }
}


/* Visual refinement: calm contextual graphics */
.home-hero::after,
.research-hero::after {
  content: "";
  position: absolute;
  right: max(34px, calc((100vw - var(--max)) / 2 + 24px));
  bottom: 28px;
  width: min(360px, 36vw);
  aspect-ratio: 720 / 420;
  background: url("illustration-space.svg") center / contain no-repeat;
  opacity: 0.075;
  pointer-events: none;
  z-index: -1;
}

.method-preview.has-card-visual {
  padding-top: 14px;
}
.method-card-visual {
  width: 100%;
  aspect-ratio: 720 / 420;
  object-fit: contain;
  border: 1px solid rgba(214,203,199,0.78);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(17,17,17,0.035);
}
.has-card-visual .method-number {
  margin-bottom: 14px;
}

.graphic-section {
  background:
    radial-gradient(circle at 18% 24%, rgba(178,15,22,0.055), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(17,17,17,0.05), transparent 24%);
}
.graph-card {
  background: linear-gradient(180deg, #fff, rgba(250,248,247,0.92));
  overflow: hidden;
}
.graph-card:nth-child(2) {
  background: linear-gradient(180deg, #fff, rgba(255,242,243,0.86));
}
.feature-illustration {
  border: 1px solid rgba(214,203,199,0.82);
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

.method-card {
  position: relative;
  overflow: hidden;
}
.method-with-visual {
  min-height: 285px;
}
.method-inline-visual {
  float: right;
  width: min(260px, 36%);
  aspect-ratio: 720 / 420;
  object-fit: contain;
  margin: 0 0 14px 22px;
  border: 1px solid rgba(214,203,199,0.8);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 8px 24px rgba(17,17,17,0.04);
}

.scan-zone { background: linear-gradient(135deg, #fff 0%, #fff 58%, #f6f1ee 100%); }
.delphi-zone { background: linear-gradient(135deg, #fff 0%, #fff 58%, #fff0f1 100%); }
.narrative-zone { background: linear-gradient(135deg, #fff 0%, #fff 58%, #f3f3f3 100%); }
.philosophy-zone { background: linear-gradient(135deg, #fff 0%, #fff 58%, #f8e7e8 100%); }
.space-zone { background: linear-gradient(135deg, #fff 0%, #fff 58%, #f2efee 100%); }
.cla-zone { background: linear-gradient(135deg, #fff 0%, #fff 58%, #fff5f5 100%); }
.limit-zone { background: linear-gradient(135deg, #fff 0%, #fff 58%, #eeeeee 100%); }

.with-side-illustration {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.side-illustration {
  width: 100%;
  aspect-ratio: 720 / 420;
  object-fit: contain;
  border: 1px solid rgba(214,203,199,0.8);
  border-radius: 20px;
  background: rgba(255,255,255,0.86);
  box-shadow: var(--shadow-soft);
  grid-row: span 2;
}

.keyword-rail {
  padding: 10px;
  border: 1px solid rgba(231,223,220,0.75);
  border-radius: 24px;
  background: rgba(255,255,255,0.46);
}

@media (max-width: 980px) {
  .home-hero::after,
  .research-hero::after { opacity: 0.04; width: 55vw; }
  .with-side-illustration { grid-template-columns: 1fr; }
  .side-illustration { max-width: 520px; }
}
@media (max-width: 720px) {
  .method-inline-visual { float: none; width: 100%; margin: 0 0 16px; }
  .method-with-visual { min-height: 0; }
  .home-hero::after,
  .research-hero::after { display: none; }
}


/* Corrections: calmer first page, natural headings, and matched graphics */
.hero { padding: 58px 0 54px; }
.hero::before {
  inset: 16px max(24px, calc((100vw - var(--max)) / 2)) 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(250,248,247,0.92) 52%, rgba(248,231,232,0.34));
  border-radius: 30px;
}
.hero-grid { grid-template-columns: minmax(0, 1fr) minmax(260px, 340px); gap: 34px; }
.hero-copy { max-width: 750px; padding: 10px 0; }
h1 { font-size: clamp(2.35rem, 4.15vw, 4.0rem); }
.lead { font-size: clamp(1.06rem, 1.55vw, 1.36rem); max-width: 760px; }
.hero-bio { font-size: 0.98rem; max-width: 720px; }
.home-profile { max-width: 340px; justify-self: end; border-radius: 24px; box-shadow: 0 14px 38px rgba(17,17,17,0.09); }
.home-profile .portrait { aspect-ratio: 1 / 1.12; object-position: center 27%; }
.home-profile .profile-card-body { padding: 18px 18px 20px; }
.home-profile h2 { font-size: 0.98rem; }
.home-profile p { font-size: 0.9rem; line-height: 1.45; }
.home-hero::after, .research-hero::after { display: none; }

.section-head-row h2 { max-width: 720px; }
.method-preview { padding: 22px; }
.method-preview h3 { margin-top: 2px; }
.method-card-visual {
  aspect-ratio: 720 / 420;
  max-height: 150px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
}
.method-preview.has-card-visual { padding-top: 18px; }
.scan-zone, .delphi-zone, .narrative-zone, .philosophy-zone, .space-zone, .cla-zone, .limit-zone {
  background: #fff;
}
.scan-zone { border-top: 5px solid #111; }
.delphi-zone { border-top: 5px solid #b20f16; }
.narrative-zone { border-top: 5px solid #d6cbc7; }
.philosophy-zone, .space-zone, .cla-zone, .limit-zone { border-top: 5px solid #b20f16; }

.graphic-section { background: linear-gradient(180deg, rgba(255,255,255,0.64), rgba(246,241,238,0.62)); border-block: 1px solid rgba(231,223,220,0.72); }
.graphic-grid { grid-template-columns: 1fr; gap: 18px; }
.graph-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #fff;
}
.graph-card:nth-child(2) { background: #fff; }
.graph-text { margin: 0; }
.feature-illustration { border-radius: 18px; background: #fff; box-shadow: none; }

.method-inline-visual {
  width: min(230px, 34%);
  background: #fff;
  box-shadow: none;
  border-radius: 16px;
}
.note-box { background: #fff; }
.red-note { background: linear-gradient(180deg, #fff, rgba(255,242,243,0.55)); }
.dark-note { background: linear-gradient(180deg, #fff, rgba(242,239,238,0.65)); }

.stat strong { font-family: var(--serif); font-size: 1.08rem; letter-spacing: -0.025em; margin-bottom: 7px; }
.stat span { font-weight: 620; line-height: 1.48; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .home-profile { justify-self: start; max-width: 360px; }
  .graph-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  h1 { font-size: clamp(2.0rem, 10vw, 3.0rem); }
  .hero { padding: 42px 0; }
  .method-inline-visual { width: 100%; }
}

/* Final visual correction: backgrounds follow the actual content boxes */
body {
  background: var(--paper);
}
.hero {
  padding: 34px 0 44px;
}
.hero::before {
  display: none;
}
.hero-grid {
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(214,203,199,0.88);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-copy {
  max-width: none;
  padding: clamp(30px, 5vw, 56px);
}
.home-profile {
  max-width: none;
  width: 100%;
  justify-self: stretch;
  align-self: stretch;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}
.home-profile .portrait {
  aspect-ratio: auto;
  height: min(430px, 58vh);
  min-height: 315px;
  object-position: center 25%;
}
.home-profile .profile-card-body {
  border-top: 1px solid var(--line);
}
.alt,
.soft-alt,
.graphic-section,
.work-nature-section,
.imagination-strip {
  background: transparent;
  border-block: 1px solid rgba(231,223,220,0.70);
}
.alt > .container,
.soft-alt > .container,
.graphic-section > .container,
.imagination-strip > .container {
  position: relative;
}
.method-preview,
.method-card,
.view-card,
.graph-card,
.nature-card,
.intent-card,
.profile-block,
.note-box {
  background: #fff;
}
.scan-zone,
.delphi-zone,
.narrative-zone,
.philosophy-zone,
.space-zone,
.cla-zone,
.limit-zone {
  background: #fff !important;
}
.scan-zone { border-top-color: #111; }
.delphi-zone { border-top-color: #b20f16; }
.narrative-zone { border-top-color: #d6cbc7; }
.philosophy-zone { border-top-color: #111; }
.space-zone { border-top-color: #111; }
.cla-zone { border-top-color: #b20f16; }
.limit-zone { border-top-color: #111; }
.method-card-visual,
.method-inline-visual,
.feature-illustration,
.side-illustration {
  background: #fff;
  border: 1px solid rgba(214,203,199,0.86);
  box-shadow: none;
}
.method-card-visual {
  max-height: 132px;
}
.method-inline-visual {
  width: min(245px, 36%);
}
.graphic-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}
.graph-card {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  border-radius: 24px;
}
.with-side-illustration {
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
  align-items: center;
}
.side-illustration {
  grid-row: auto;
}
.method-kicker {
  display: none;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .home-profile { border-left: 0; border-top: 1px solid var(--line); }
  .home-profile .portrait { height: auto; min-height: 0; aspect-ratio: 1 / 1.05; }
  .graph-card,
  .with-side-illustration { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .hero-copy { padding: 28px 24px; }
  .method-inline-visual { float: none; width: 100%; margin: 0 0 16px; }
}

/* Clean correction: no floating hero background, no duplicated method-image grid */
html, body { overflow-x: hidden; }
body { background: #faf8f7; }
.home-hero {
  background: #faf8f7;
  border-bottom: 1px solid rgba(231,223,220,0.72);
}
.hero {
  overflow: visible;
  padding: clamp(38px, 5.5vw, 70px) 0;
}
.hero::before,
.hero::after {
  display: none !important;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(22px, 3vw, 36px);
  align-items: stretch;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.hero-copy {
  background: #fff;
  border: 1px solid rgba(214,203,199,0.88);
  border-left: 5px solid var(--red);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  padding: clamp(34px, 5vw, 60px);
  min-width: 0;
}
.home-profile {
  max-width: 360px;
  width: 100%;
  justify-self: end;
  align-self: stretch;
  border: 1px solid rgba(214,203,199,0.88) !important;
  border-radius: 30px !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft) !important;
  background: #fff;
}
.home-profile .portrait {
  height: 360px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 24%;
}
.home-profile .profile-card-body {
  border-top: 1px solid var(--line);
  padding: 18px 20px 22px;
}
.theme-band,
.intro-section,
.home-imagination,
.graphic-section,
.alt {
  background: #faf8f7 !important;
}
.section-pad.alt,
.section-pad.graphic-section,
.section-pad.home-imagination {
  border-block: 1px solid rgba(231,223,220,0.72);
}
.graphic-section .section-head-row {
  margin-bottom: 20px;
}
.research-build-grid,
.graphic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.graph-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  background: #fff !important;
  border: 1px solid rgba(214,203,199,0.88);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
}
.graph-card.scan-zone,
.graph-card.delphi-zone,
.graph-card.space-zone,
.graph-card.narrative-zone {
  border-top-width: 1px;
}
.graph-card.delphi-zone { border-left: 5px solid var(--red); }
.graph-card.scan-zone,
.graph-card.space-zone { border-left: 5px solid var(--ink); }
.graph-card.narrative-zone { border-left: 5px solid var(--line-strong); }
.graph-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.feature-illustration {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(214,203,199,0.86);
  border-radius: 18px;
  box-shadow: none;
}
.method-preview-grid {
  display: none;
}
.method-card.method-with-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.38fr);
  gap: 20px;
  align-items: start;
}
.method-card.method-with-visual h3,
.method-card.method-with-visual p,
.method-card.method-with-visual details {
  grid-column: 1;
}
.method-card.method-with-visual .method-inline-visual {
  grid-column: 2;
  grid-row: 1 / span 5;
  width: 100%;
  float: none;
  margin: 0;
  max-height: 190px;
  object-fit: contain;
}
.method-kicker { display: none !important; }
@media (max-width: 980px) {
  .hero-grid,
  .graph-card,
  .method-card.method-with-visual {
    grid-template-columns: 1fr;
  }
  .home-profile {
    justify-self: start;
    max-width: 380px;
  }
  .home-profile .portrait {
    height: auto;
    aspect-ratio: 1 / 1.05;
  }
  .method-card.method-with-visual .method-inline-visual {
    grid-column: 1;
    grid-row: auto;
    max-width: 440px;
  }
}
@media (max-width: 640px) {
  .hero-copy { padding: 28px 22px; }
  .home-profile { max-width: none; }
  .graph-card { padding: 20px; }
}


/* Final layout correction: one matching hero panel, no off-centre floating background */
.home-hero {
  background: #faf8f7 !important;
  border-bottom: 1px solid rgba(231,223,220,0.72);
}
.hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px) !important;
  gap: clamp(24px, 3.2vw, 42px) !important;
  align-items: center !important;
  background: #fff !important;
  border: 1px solid rgba(214,203,199,0.88) !important;
  border-radius: 30px !important;
  box-shadow: var(--shadow-soft) !important;
  padding: clamp(24px, 4vw, 52px) !important;
  overflow: hidden !important;
}
.hero-copy {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.home-profile {
  max-width: 330px !important;
  justify-self: end !important;
  align-self: center !important;
  border: 1px solid rgba(214,203,199,0.88) !important;
  border-radius: 24px !important;
  box-shadow: none !important;
  overflow: hidden !important;
}
.home-profile .portrait {
  height: 300px !important;
  object-fit: cover !important;
  object-position: center 24% !important;
}
.graph-card.scan-zone { border-left-color: var(--red); }
.graph-card.delphi-zone { border-left-color: var(--red); }
.graph-card.space-zone { border-left-color: var(--ink); }
.graph-card.narrative-zone { border-left-color: var(--line-strong); }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .home-profile { justify-self: start !important; max-width: 360px !important; }
}
@media (max-width: 640px) {
  .hero-grid { padding: 24px 20px !important; border-radius: 24px !important; }
  .home-profile { max-width: none !important; width: 100% !important; }
  .home-profile .portrait { height: auto !important; aspect-ratio: 1 / 1.05 !important; }
}


/* Research Radar */
.radar-hero {
  background: #faf8f7 !important;
  border-bottom: 1px solid rgba(231,223,220,0.72);
}
.radar-note-band {
  background: #fff !important;
  border-block: 1px solid rgba(231,223,220,0.72);
}
.radar-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.radar-principles article,
.radar-preview-box {
  background: #fff;
  border: 1px solid rgba(214,203,199,0.88);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 3vw, 30px);
}
.radar-principles h2 {
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.radar-head-row {
  align-items: end;
}
.radar-count {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  color: var(--red);
  font-weight: 850;
  font-size: 0.86rem;
}
.radar-list {
  display: grid;
  gap: 28px;
}
.radar-topic {
  border-top: 3px solid var(--ink);
  padding-top: 18px;
}
.radar-topic h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin-bottom: 14px;
}
.radar-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.radar-item {
  background: #fff;
  border: 1px solid rgba(214,203,199,0.88);
  border-left: 5px solid var(--red);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
}
.radar-item h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.radar-meta,
.radar-source {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}
.radar-source {
  margin-bottom: 12px;
}
.radar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.radar-preview-section {
  background: #faf8f7 !important;
  border-block: 1px solid rgba(231,223,220,0.72);
}
.radar-preview-box .button {
  margin-top: 8px;
}

.radar-wisdom-band {
  background: linear-gradient(135deg, #111 0%, #261c1c 100%) !important;
  color: #fff;
  border-block: 1px solid rgba(17, 17, 17, 0.86);
}
.radar-wisdom-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
}
.radar-wisdom-band .eyebrow,
.radar-wisdom-band .section-note {
  color: rgba(255, 255, 255, 0.78);
}
.radar-wisdom-band h2 {
  color: #fff;
}
.radar-wisdom-list {
  display: grid;
  gap: 16px;
}
.radar-wisdom-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 5px solid var(--red);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.radar-wisdom-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.08;
  margin-bottom: 10px;
  color: #fff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.6);
}
.radar-wisdom-ref {
  color: #fff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.6);
}

.radar-wisdom-card p {
  color: #fff !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #fff;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 0 10px rgba(0,0,0,0.6);
}
.radar-wisdom-questions {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-top: -2px;
  margin-bottom: 18px;
}
.radar-wisdom-questions strong {
  color: #fff;
  font-weight: 900;
}
.radar-wisdom-card .chip {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.24);
  color: #fff;
}
@media (max-width: 900px) {
  .radar-wisdom-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .radar-principles,
  .radar-topic-grid {
    grid-template-columns: 1fr;
  }
}


/* Research Radar visibility update */
.site-nav a[href="research-radar.html"] {
  color: var(--red);
}
.site-nav a[href="research-radar.html"]::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-left: 6px;
  vertical-align: 0.08em;
}
.hero-actions a[href="research-radar.html"] {
  border-color: rgba(165, 30, 35, 0.42);
  color: var(--red);
  background: var(--red-soft);
}
.home-radar-callout {
  background: linear-gradient(180deg, #fff 0%, #faf8f7 100%) !important;
  border-block: 1px solid rgba(231,223,220,0.72);
}
.home-radar-callout .radar-preview-box,
.research-radar-inline-cta .radar-preview-box {
  border-left: 7px solid var(--red);
  box-shadow: 0 18px 54px rgba(24, 18, 17, 0.09);
}
.home-radar-callout h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.home-wisdom-band {
  margin-top: 0;
}
