/* =========================================================
   Dmitri Kudinov - site design, Recto-inspired editorial style.
   White-on-white minimal. Type does the work.
   ========================================================= */

.recto-scope {
  --paper: #ffffff; --paper-soft: #f6f6f6; --paper-tint: #faf9f7;
  --ink: #0a0a0a; --ink-soft: #4a4a4a; --ink-mute: #8a8a8a;
  --accent: #6b3a2a;
  --line: rgba(10,10,10,0.10); --line-strong: rgba(10,10,10,0.20);
  --ease: cubic-bezier(0.2,0.8,0.2,1); --ease-out: cubic-bezier(0.16,1,0.3,1);
  --container: 1320px; --container-narrow: 800px;
  --pad-x: clamp(20px,4vw,64px); --pad-section: clamp(56px,7vw,104px);
  --display: 'Newsreader','Times New Roman',Georgia,serif;
  --sans: 'Inter Tight',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  --mono: 'IBM Plex Mono',ui-monospace,'SF Mono',Menlo,monospace;
  --t-poster: clamp(3rem,2.2rem + 5.5vw,7.5rem);
  --t-body: clamp(1rem,0.96rem + 0.16vw,1.06rem);
  --t-mono: 0.74rem;
  font-family: var(--sans); font-size: var(--t-body); line-height: 1.6; color: var(--ink); background: var(--paper);
  width: 100%;
}
.recto-scope *, .recto-scope *::before, .recto-scope *::after { box-sizing: border-box; }
.recto-scope img { display: block; max-width: 100%; height: auto; }
.recto-scope h1, .recto-scope h2, .recto-scope h3, .recto-scope h4 { font-family: var(--display); font-weight: 400; margin: 0; letter-spacing: -0.022em; line-height: 1; color: var(--ink); }
.recto-scope p { margin: 0 0 1em; color: var(--ink-soft); }
.recto-scope a { color: inherit; text-decoration: none; }

/* ---- shared bits ---- */
.recto-scope .label { display: inline-flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: var(--t-mono); text-transform: uppercase; letter-spacing: 0.18em; color: var(--ink-mute); margin: 0 0 20px; }
.recto-scope .label::before { content: ''; display: inline-block; width: 1px; height: 16px; background: var(--ink); }
.recto-scope .num { font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.recto-scope .container { width: min(100% - var(--pad-x) * 2, var(--container)); margin-inline: auto; }
.recto-scope .container-narrow { width: min(100% - var(--pad-x) * 2, var(--container-narrow)); margin-inline: auto; }
.recto-scope .btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 0.84rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); position: relative; padding-bottom: 6px; background: none; border: none; cursor: pointer; }
.recto-scope .btn::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--ink); transition: transform 0.4s var(--ease-out); transform-origin: left; }
.recto-scope .btn:hover::after { transform: scaleX(0.5); }
.recto-scope .btn .arrow { display: inline-block; transition: transform 0.3s var(--ease-out); }
.recto-scope .btn:hover .arrow { transform: translateX(4px); }
.recto-scope .btn-solid { padding: 15px 26px; background: var(--ink); color: var(--paper); }
.recto-scope .btn-solid::after { display: none; }
.recto-scope .btn-solid:hover { background: transparent; color: var(--ink); outline: 1px solid var(--ink); }

/* ---- stat callouts (used to punch up otherwise-plain sections) ---- */
.recto-scope .stat-row { display: flex; gap: clamp(28px,4vw,56px); flex-wrap: wrap; margin-top: 28px; }
.recto-scope .stat { display: flex; flex-direction: column; gap: 4px; }
.recto-scope .stat .stat-num { font-family: var(--display); font-size: clamp(1.8rem,1.4rem + 1.5vw,2.6rem); letter-spacing: -0.02em; line-height: 1; color: var(--ink); }
.recto-scope .stat .stat-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }

/* ---- header ---- */
.recto-scope .site-header { position: relative; z-index: 220; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px var(--pad-x); background: var(--paper); border-bottom: 1px solid var(--line); flex-wrap: nowrap; }
.recto-scope .brand { display: inline-flex; align-items: baseline; gap: 10px; flex: 0 0 auto; transition: opacity 0.3s var(--ease); }
.recto-scope .brand:hover { opacity: 0.65; }
.recto-scope .brand-name { font-family: var(--display); font-size: 1.7rem; letter-spacing: -0.02em; white-space: nowrap; }
.recto-scope .site-nav { display: flex; gap: 22px; align-items: center; flex-wrap: nowrap; }
.recto-scope .site-nav a { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding: 6px 0; white-space: nowrap; }
.recto-scope .site-nav a:hover, .recto-scope .site-nav a.is-active { color: var(--ink); }
.recto-scope .header-cta { display: flex; align-items: center; flex: 0 0 auto; }
.recto-scope .menu-toggle { display: none; background: transparent; border: 1px solid var(--ink); width: 40px; height: 40px; padding: 0; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 4px; flex: 0 0 auto; }
.recto-scope .menu-toggle span { display: block; width: 16px; height: 1px; background: var(--ink); transition: all 0.3s var(--ease); }
.recto-scope .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.recto-scope .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.recto-scope .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.recto-scope .site-mobile-nav { display: none; position: fixed; inset: 69px 0 auto 0; z-index: 210; flex-direction: column; padding: 20px var(--pad-x) 28px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px -12px rgba(0,0,0,0.15); max-height: calc(100vh - 69px); overflow-y: auto; }
.recto-scope .site-mobile-nav a { font-family: var(--display); font-size: 1.6rem; padding: 14px 0; color: var(--ink); border-bottom: 1px solid var(--line); }
.recto-scope .site-mobile-nav.is-open { display: flex; }
.recto-scope .mobile-nav-backdrop { display: none; position: fixed; inset: 69px 0 0 0; z-index: 205; background: rgba(10,10,10,0.25); }
.recto-scope .mobile-nav-backdrop.is-open { display: block; }

/* ---- hero (home) ---- */
.recto-scope .hero { display: grid; padding: clamp(32px,4vw,64px) var(--pad-x) clamp(36px,4vw,64px); border-bottom: 1px solid var(--line); }
.recto-scope .hero-grid { width: min(100%,var(--container)); margin-inline: auto; display: grid; grid-template-columns: 1fr auto; gap: clamp(32px,4vw,72px); align-items: start; }
.recto-scope .hero-poster { font-family: var(--display); font-size: var(--t-poster); line-height: 0.98; letter-spacing: -0.03em; font-weight: 400; }
.recto-scope .hero-photo { width: 216px; height: 216px; border-radius: 50%; overflow: hidden; background: var(--paper-soft); border: 1px solid var(--line); flex: 0 0 auto; transition: transform 0.5s var(--ease-out); }
.recto-scope .hero-photo:hover { transform: scale(1.03); }
.recto-scope .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.recto-scope .hero-name-row { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.recto-scope .hero-rail { display: flex; flex-direction: column; gap: 16px; padding-left: 28px; border-left: 1px solid var(--ink); min-width: 260px; max-width: 320px; padding-block: 6px 16px; }
.recto-scope .hero-rail .label { color: var(--ink); margin: 0; }
.recto-scope .hero-rail .label::before { background: var(--ink); }
.recto-scope .hero-rail h3 { font-size: 1.4rem; letter-spacing: -0.018em; line-height: 1.15; }
.recto-scope .hero-rail p { font-size: 0.92rem; line-height: 1.55; }
.recto-scope .hero-foot { grid-column: 1 / -1; margin-top: clamp(28px,3vw,48px); padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; align-items: start; }
.recto-scope .hero-foot .lede { font-size: 1.1rem; line-height: 1.65; max-width: 54ch; margin: 0; }
.recto-scope .hero-foot .field-block { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.recto-scope .hero-foot .field-block strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 8px; }
.recto-scope .hero-foot .field-block .val { font-family: var(--display); font-size: 1.7rem; text-transform: none; letter-spacing: -0.012em; color: var(--ink); line-height: 1.15; margin-top: 4px; display: block; }
.recto-scope .hero-actions { grid-column: 1 / -1; margin-top: clamp(24px,3vw,40px); display: flex; gap: 36px; flex-wrap: wrap; }

/* ---- feature teaser (home) ---- */
.recto-scope .feature { padding: var(--pad-section) var(--pad-x); border-bottom: 1px solid var(--line); }
.recto-scope .feature-head { width: min(100%,var(--container)); margin: 0 auto clamp(28px,4vw,48px); display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.recto-scope .feature-head h2 { font-size: clamp(1.8rem,1.3rem + 2vw,3rem); font-style: italic; font-weight: 300; }
.recto-scope .feature-head .meta { font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); text-align: right; }
.recto-scope .feature-body { width: min(100%,var(--container)); margin: 0 auto; }
.recto-scope .feature-body p { font-size: 1.15rem; line-height: 1.65; max-width: 70ch; color: var(--ink); }
.recto-scope .feature-foot { width: min(100%,var(--container)); margin: 20px auto 0; }
.recto-scope .feature-foot .read { font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.18em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; color: var(--ink); }

/* ---- highlights strip (home) - placeholder photo grid ---- */
.recto-scope .highlights-strip { padding: var(--pad-section) var(--pad-x); border-bottom: 1px solid var(--line); }
.recto-scope .highlights-head { width: min(100%,var(--container)); margin: 0 auto clamp(28px,4vw,48px); display: flex; align-items: baseline; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.recto-scope .highlights-head h2 { font-size: clamp(1.6rem,1.2rem + 1.4vw,2.2rem); font-style: italic; font-weight: 300; }
.recto-scope .highlights-carousel { width: min(100%,var(--container)); margin: 0 auto; overflow: hidden; }
.recto-scope .highlights-track { display: flex; gap: clamp(20px,3vw,32px); transition: transform 0.9s var(--ease-out); }
.recto-scope .highlight-item { flex: 0 0 calc((100% - 2 * clamp(20px,3vw,32px)) / 3); }
.recto-scope .highlight-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--paper-soft); border: 1px solid var(--line); transition: transform 0.5s var(--ease-out); }
.recto-scope .highlight-item:hover .highlight-photo { transform: scale(1.03); }
.recto-scope .highlight-item figcaption { margin-top: 12px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--ink-mute); line-height: 1.5; }
@media (max-width: 768px) {
  .recto-scope .highlight-item { flex: 0 0 100%; }
}

/* ---- recognition strip (home) ---- */
.recto-scope .recognition { padding: clamp(48px,6vw,80px) var(--pad-x); border-bottom: 1px solid var(--line); background: var(--paper-tint); }
.recto-scope .recognition-list { width: min(100%,var(--container)); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,3vw,32px); }
.recto-scope .recognition-item { display: flex; flex-direction: column; gap: 8px; padding: 8px; margin: -8px; border-radius: 4px; transition: background 0.3s var(--ease); }
.recto-scope .recognition-item:hover { background: rgba(10,10,10,0.03); }
.recto-scope .recognition-item .stat-num { font-family: var(--display); font-size: clamp(2rem,1.4rem + 2vw,3.2rem); letter-spacing: -0.02em; }
.recto-scope .recognition-item .stat-label { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); line-height: 1.5; }

/* ---- statement ---- */
.recto-scope .statement { padding: clamp(40px,5vw,64px) var(--pad-x); border-bottom: 1px solid var(--line); overflow-x: hidden; }
.recto-scope .statement .container-narrow { display: flex; flex-direction: column; gap: 20px; }
.recto-scope .statement-body { position: relative; font-family: var(--display); font-size: clamp(1.4rem,1rem + 1.3vw,2rem); font-weight: 300; line-height: 1.35; color: var(--ink); letter-spacing: -0.014em; }
.recto-scope .statement-body em { font-style: italic; }
.recto-scope .quote-mark { font-family: var(--display); font-size: 5em; line-height: 0; color: var(--line-strong); position: absolute; left: -0.55em; top: 0.3em; user-select: none; }

/* ---- closing CTA ---- */
.recto-scope .cta { padding: var(--pad-section) var(--pad-x); }
.recto-scope .cta-grid { width: min(100%,var(--container)); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: clamp(32px,5vw,80px); align-items: end; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.recto-scope .cta-grid h2 { font-size: clamp(1.8rem,1.2rem + 2.5vw,3.2rem); letter-spacing: -0.02em; line-height: 1.05; }
.recto-scope .cta-grid h2 em { font-style: italic; font-weight: 300; }

/* ---- footer ---- */
.recto-scope .site-footer { padding: clamp(48px,6vw,96px) var(--pad-x) 32px; border-top: 1px solid var(--ink); }
.recto-scope .footer-grid { width: min(100%,var(--container)); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.recto-scope .footer-logo { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; border: 1px solid var(--line); margin-bottom: 20px; transition: transform 0.4s var(--ease-out); }
.recto-scope .footer-logo img { width: 100%; height: 100%; object-fit: cover; }
.recto-scope .footer-brand:hover .footer-logo { transform: scale(1.08); }
.recto-scope .footer-brand .brand-name { font-size: 2.6rem; }
.recto-scope .footer-brand p { margin-top: 14px; font-family: var(--sans); font-size: 0.92rem; font-style: normal; font-weight: 400; line-height: 1.5; max-width: 32ch; letter-spacing: 0; color: var(--ink-mute); }
.recto-scope .footer-col h4 { font-family: var(--mono); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 18px; }
.recto-scope .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.recto-scope .footer-col a { color: var(--ink); font-size: 1.1rem; display: inline-block; transition: transform 0.3s var(--ease-out), font-style 0.2s; }
.recto-scope .footer-col a:hover { font-style: italic; transform: translateX(6px) scale(1.04); }
.recto-scope .footer-col.is-contact { padding: 10px; margin: -10px; border-radius: 6px; transition: background 0.6s var(--ease), box-shadow 0.6s var(--ease); }
.recto-scope .footer-col.is-contact.is-highlighted { background: var(--paper-tint); box-shadow: 0 0 0 1px var(--line); }
.recto-scope .footer-bottom { width: min(100%,var(--container)); margin: 20px auto 0; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }

/* ---- inner page head (About, Business Education, Key Projects, Media) ---- */
.recto-scope .page-head { padding: clamp(44px,5.5vw,88px) var(--pad-x) clamp(28px,3.5vw,44px); border-bottom: 1px solid var(--line); }
.recto-scope .page-head .container { display: flex; flex-direction: column; gap: 20px; }
.recto-scope .page-head h1 { font-size: clamp(2.6rem,1.8rem + 4vw,5.5rem); letter-spacing: -0.03em; line-height: 0.98; font-weight: 400; font-style: italic; }
.recto-scope .page-head .lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 62ch; margin: 0; line-height: 1.6; }
.recto-scope .page-head .meta-row { margin-top: 12px; display: flex; gap: 32px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); padding-top: 20px; border-top: 1px solid var(--line); }
.recto-scope .page-head .meta-row strong { color: var(--ink); font-weight: 500; }
.recto-scope .page-head .hero-photo { margin-top: 8px; }

/* ---- CV timeline (About page) - vertical line with scroll-highlighted stops ---- */
.recto-scope .timeline { padding: clamp(28px,3.5vw,44px) var(--pad-x) var(--pad-section); }
.recto-scope .timeline-list { width: min(100% - var(--pad-x) * 2, 880px); margin: 0 auto; position: relative; display: flex; flex-direction: column; padding-left: 44px; }
.recto-scope .timeline-list::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.recto-scope .timeline-item { position: relative; padding: 30px 0; border-bottom: 1px solid var(--line); }
.recto-scope .timeline-item:first-child { padding-top: 4px; }
.recto-scope .timeline-item .year { display: block; margin-bottom: 10px; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--ink-mute); transition: color 0.4s var(--ease); }
.recto-scope .timeline-item::after { content: ''; position: absolute; left: -40px; top: 38px; width: 9px; height: 9px; border-radius: 50%; background: var(--paper); border: 1px solid var(--ink-mute); transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease); }
.recto-scope .timeline-item.in-view .year { color: var(--ink); }
.recto-scope .timeline-item.in-view::after { background: var(--ink); border-color: var(--ink); transform: scale(1.3); }
.recto-scope .timeline-item .meta { display: flex; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.recto-scope .timeline-item .meta strong { color: var(--ink); font-weight: 500; }
.recto-scope .timeline-item h3 { font-size: clamp(1.3rem,1.05rem + 1vw,1.8rem); font-style: italic; font-weight: 400; margin-bottom: 12px; letter-spacing: -0.014em; }
.recto-scope .timeline-item p { font-size: 0.98rem; line-height: 1.7; max-width: 62ch; margin: 0 0 8px; }
.recto-scope .timeline-item .achievement { font-size: 0.86rem; color: var(--ink); font-style: italic; }
.recto-scope .timeline-item .achievement strong { font-style: normal; font-weight: 600; }
.recto-scope .timeline-photo { width: min(100% - var(--pad-x) * 2, 880px); margin: 0 auto clamp(28px,3.5vw,44px); padding-left: 44px; }
.recto-scope .timeline-photo figure { width: 220px; }
.recto-scope .timeline-photo img { border-radius: 4px; border: 1px solid var(--line); }
.recto-scope .timeline-photo figcaption { margin-top: 10px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.recto-scope .timeline-close { width: min(100% - var(--pad-x) * 2, 880px); margin: 40px auto 0; padding-top: 28px; padding-left: 44px; border-top: 1px solid var(--line); }
.recto-scope .timeline-close p { font-size: 0.86rem; color: var(--ink-mute); font-style: italic; max-width: 60ch; }

/* ---- catalog list (Key Projects) - clickable rows with hover lift ---- */
.recto-scope .catalog { padding: var(--pad-section) var(--pad-x); }
.recto-scope .catalog-list { width: min(100%,var(--container)); margin: 0 auto; display: flex; flex-direction: column; }
.recto-scope .catalog-row { display: grid; grid-template-columns: 80px 1fr auto; gap: 32px; align-items: start; padding: 30px 24px; margin: 0 -24px; border-top: 1px solid var(--line); cursor: pointer; transition: background 0.3s var(--ease), transform 0.3s var(--ease); background: none; border-left: none; border-right: none; border-bottom: none; width: calc(100% + 48px); text-align: left; font: inherit; color: inherit; }
.recto-scope .catalog-row:last-child { border-bottom: 1px solid var(--line); }
.recto-scope .catalog-row:hover { background: var(--paper-tint); transform: translateX(4px); }
.recto-scope .catalog-row:focus-visible { outline: 1px solid var(--ink); outline-offset: -2px; }
.recto-scope .catalog-row .num { padding-top: 6px; }
.recto-scope .catalog-row .title { font-family: var(--display); font-size: clamp(1.4rem,1.1rem + 1vw,1.9rem); letter-spacing: -0.014em; line-height: 1.15; color: var(--ink); font-weight: 400; font-style: italic; margin-bottom: 10px; }
.recto-scope .catalog-row p { font-size: 0.98rem; line-height: 1.65; max-width: 60ch; margin: 0; }
.recto-scope .catalog-row .meta { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); text-align: right; white-space: nowrap; padding-top: 6px; }
.recto-scope .catalog-row .meta strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 4px; }
.recto-scope .catalog-row .expand-hint { display: block; margin-top: 10px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); opacity: 0; transition: opacity 0.3s var(--ease); }
.recto-scope .catalog-row:hover .expand-hint { opacity: 1; }

/* ---- project popup / modal ---- */
.recto-scope .project-modal-overlay { position: fixed; inset: 0; background: rgba(10,10,10,0.5); z-index: 500; display: none; align-items: center; justify-content: center; padding: 24px; }
.recto-scope .project-modal-overlay.is-open { display: flex; }
.recto-scope .project-modal { background: var(--paper); max-width: 920px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 0; position: relative; }
.recto-scope .project-modal-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; font-family: var(--mono); font-size: 1.1rem; z-index: 2; }
.recto-scope .project-modal .num { display: block; margin: clamp(28px,4vw,48px) clamp(28px,4vw,48px) 16px; }
.recto-scope .project-modal h3 { font-size: clamp(1.7rem,1.3rem + 1.5vw,2.4rem); font-style: italic; margin: 0 clamp(28px,4vw,48px) 8px; }
.recto-scope .project-modal .meta { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin: 0 clamp(28px,4vw,48px) 20px; }
.recto-scope .project-modal .modal-photo { width: 100%; max-height: 60vh; object-fit: cover; display: block; margin: 0 0 clamp(24px,3vw,32px); }
.recto-scope .project-modal .modal-photo-placeholder { width: calc(100% - clamp(28px,4vw,48px) * 2); aspect-ratio: 16/9; margin: 0 clamp(28px,4vw,48px) clamp(24px,3vw,32px); background: var(--paper-soft); border: 1px dashed var(--line-strong); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); text-align: center; }
.recto-scope .project-modal p { font-size: 1.05rem; line-height: 1.7; margin: 0 clamp(28px,4vw,48px) 1em; }
.recto-scope .project-modal p:last-child { margin-bottom: clamp(28px,4vw,48px); }

/* ---- credential blocks (Business Education) ---- */
.recto-scope .credentials { padding: var(--pad-section) var(--pad-x); }
.recto-scope .credential-blocks { width: min(100% - var(--pad-x) * 2, var(--container-narrow)); margin: 0 auto; display: grid; gap: 0; }
.recto-scope .credential-block { padding: 28px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 2fr; gap: 24px; transition: background 0.3s var(--ease); }
.recto-scope .credential-block:last-child { border-bottom: 1px solid var(--line); }
.recto-scope .credential-block:hover { background: var(--paper-tint); }
.recto-scope .credential-block .label { display: block; margin: 0 0 8px; }
.recto-scope .credential-block .label::before { content: none; }
.recto-scope .credential-block .meta-year { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.08em; color: var(--ink-mute); display: block; }
.recto-scope .credential-block .val { font-family: var(--display); font-size: 1.4rem; font-style: italic; font-weight: 400; color: var(--ink); letter-spacing: -0.014em; display: block; margin-bottom: 6px; }
.recto-scope .credential-block p { font-size: 0.95rem; margin: 0; }
.recto-scope .credential-block.is-featured .val { font-size: 1.75rem; font-weight: 500; }
.recto-scope .credential-photos { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.recto-scope .credential-photo { display: inline-flex; flex-direction: column; gap: 8px; }
.recto-scope .credential-photo img { width: 120px; height: auto; border-radius: 4px; border: 1px solid var(--line); }
.recto-scope .credential-photo.is-lg img { width: auto; max-width: 100%; height: 160px; }
.recto-scope .credential-photo.is-xl img { width: 216px; max-width: 100%; height: auto; }
.recto-scope .credential-photo figcaption { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }

.recto-scope .certificates { padding: var(--pad-section) var(--pad-x); border-top: 1px solid var(--line); }
.recto-scope .certificates-head { width: min(100%,var(--container)); margin: 0 auto clamp(28px,4vw,48px); display: flex; align-items: baseline; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.recto-scope .certificates-head h2 { font-size: clamp(1.6rem,1.2rem + 1.4vw,2.2rem); font-style: italic; font-weight: 300; }
.recto-scope .cert-groups { width: min(100% - var(--pad-x) * 2, var(--container)); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px,4vw,56px); }
.recto-scope .cert-groups-solo { width: min(100% - var(--pad-x) * 2, var(--container-narrow)); margin: 0 auto; }
.recto-scope .cert-group-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.recto-scope .cert-list { display: flex; flex-direction: column; gap: 20px; }
.recto-scope .cert-item { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 14px; }
.recto-scope .cert-year { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--ink-mute); padding-top: 2px; width: 60px; flex-shrink: 0; }
.recto-scope .cert-body { display: flex; flex-direction: column; gap: 3px; flex: 1 1 150px; min-width: 150px; }
.recto-scope .cert-title { font-family: var(--display); font-style: italic; font-size: 1rem; line-height: 1.3; color: var(--ink); }
.recto-scope .cert-issuer { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.03em; color: var(--ink-mute); }
.recto-scope .cert-thumb { width: 160px; max-width: 100%; height: auto; border-radius: 3px; border: 1px solid var(--line); flex-shrink: 0; }
.recto-scope .cert-footnote { width: min(100% - var(--pad-x) * 2, var(--container-narrow)); margin: clamp(32px,4vw,48px) auto 0; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink-mute); text-align: center; }

.recto-scope .awards { padding: var(--pad-section) var(--pad-x); border-top: 1px solid var(--line); }
.recto-scope .awards-head { width: min(100% - var(--pad-x) * 2, var(--container-narrow)); margin: 0 auto clamp(28px,4vw,48px); display: flex; align-items: baseline; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.recto-scope .awards-head h2 { font-size: clamp(1.6rem,1.2rem + 1.4vw,2.2rem); font-style: italic; font-weight: 300; }
.recto-scope .award-list { width: min(100% - var(--pad-x) * 2, var(--container-narrow)); margin: 0 auto; display: grid; gap: 0; }
.recto-scope .award-block { padding: 28px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 2fr; gap: 24px; transition: background 0.3s var(--ease); }
.recto-scope .award-block:last-child { border-bottom: 1px solid var(--line); }
.recto-scope .award-block:hover { background: var(--paper-tint); }
.recto-scope .award-block .label { display: block; margin: 0 0 8px; }
.recto-scope .award-block .label::before { content: none; }
.recto-scope .award-block .meta-year { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.08em; color: var(--ink-mute); display: block; }
.recto-scope .award-block .val { font-family: var(--display); font-size: 1.4rem; font-style: italic; font-weight: 400; color: var(--ink); letter-spacing: -0.014em; display: block; margin-bottom: 6px; }
.recto-scope .award-block p { font-size: 0.95rem; margin: 0; }
.recto-scope .award-photos { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.recto-scope .award-photo { display: inline-flex; flex-direction: column; gap: 8px; }
.recto-scope .award-photo img { width: 200px; max-width: 100%; height: auto; border-radius: 4px; border: 1px solid var(--line); }
.recto-scope .award-photo figcaption { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }

/* ---- press list (Media) ---- */
.recto-scope .press-section { padding: var(--pad-section) var(--pad-x); }
.recto-scope .press-list-real { width: min(100% - var(--pad-x) * 2, var(--container-narrow)); margin: 0 auto; display: flex; flex-direction: column; }
.recto-scope .press-item { display: block; padding: 26px 0; border-top: 1px solid var(--line); transition: padding-left 0.3s var(--ease); }
.recto-scope .press-item:last-child { border-bottom: 1px solid var(--line); }
.recto-scope .press-item:hover { padding-left: 12px; }
.recto-scope .press-item .meta { display: flex; gap: 20px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.recto-scope .press-item .meta strong { color: var(--ink); font-weight: 500; }
.recto-scope .press-item h3 { font-size: clamp(1.2rem,1rem + 0.7vw,1.5rem); font-style: italic; font-weight: 400; letter-spacing: -0.012em; display: inline; }
.recto-scope .press-item .read-arrow { font-family: var(--mono); margin-left: 8px; transition: transform 0.3s var(--ease-out); display: inline-block; }
.recto-scope .press-item:hover .read-arrow { transform: translateX(6px); }
.recto-scope .press-item .press-also { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink-mute); margin: 10px 0 0; }
.recto-scope .press-item .press-also a { color: var(--ink-mute); text-decoration: underline; }
.recto-scope .press-note { width: min(100% - var(--pad-x) * 2, var(--container-narrow)); margin: 32px auto 0; }
.recto-scope .press-note p { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }

.recto-scope .notfound { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: var(--pad-section) var(--pad-x); text-align: center; }
.recto-scope .notfound-inner { max-width: 640px; margin: 0 auto; }
.recto-scope .notfound-eyebrow { font-family: var(--mono); font-size: var(--t-mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 20px; }
.recto-scope .notfound-num { font-family: var(--display); font-style: italic; font-weight: 300; font-size: clamp(5rem,3rem + 10vw,11rem); line-height: 0.9; letter-spacing: -0.03em; margin: 0 0 28px; color: var(--ink); }
.recto-scope .notfound-lede { font-size: 1.15rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 44px; }
.recto-scope .notfound-actions { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ---- reveal + responsive ---- */
.recto-scope .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.recto-scope .reveal.in { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .recto-scope .hero-grid { grid-template-columns: 1fr; }
  .recto-scope .hero-rail { padding-left: 0; border-left: 0; padding-top: 24px; border-top: 1px solid var(--line); max-width: none; }
  .recto-scope .hero-foot { grid-template-columns: 1fr; }
  .recto-scope .feature-head, .recto-scope .cta-grid { grid-template-columns: 1fr; }
  .recto-scope .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .recto-scope .credential-block { grid-template-columns: 1fr; }
  .recto-scope .award-block { grid-template-columns: 1fr; }
  .recto-scope .catalog-row { grid-template-columns: 44px 1fr; padding-inline: 12px; margin-inline: -12px; width: calc(100% + 24px); }
  .recto-scope .catalog-row .meta { display: none; }
  .recto-scope .recognition-list { grid-template-columns: 1fr 1fr; }
  .recto-scope .cert-groups { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .recto-scope .site-nav, .recto-scope .header-cta { display: none; }
  .recto-scope .menu-toggle { display: inline-flex; }
  .recto-scope .footer-grid { grid-template-columns: 1fr; }
  .recto-scope .recognition-list { grid-template-columns: 1fr; }
  .recto-scope .timeline-list { padding-left: 0; }
  .recto-scope .timeline-list::before { display: none; }
  .recto-scope .timeline-item::after { display: none; }
  .recto-scope .timeline-photo, .recto-scope .timeline-close { padding-left: 0; }
  .recto-scope .hero-name-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .recto-scope .credential-photo { flex-direction: column; align-items: flex-start; }
  .recto-scope .cert-groups { grid-template-columns: 1fr; }
  .recto-scope .award-photo { flex-direction: column; align-items: flex-start; }
}
